6,925 questions
2
votes
4
answers
387
views
Help! Evil services are killing my objects
When I believed in American dream about encapsulation and polymorphism, intrusion of Web Services washed my objects off with RPC calls...
When I cherished my resurrected PONOs, ugly army of ...
12
votes
9
answers
10k
views
Samples for Domain Driven Design (esp .NET focused)
Ok so I've ordered Applying Domain-Driven Design and Patterns: Using .Net, but while I wait for it to arrive I'm looking at starting to apply the techniques in my current project. I really grasp the ...
11
votes
3
answers
4k
views
Are we all looking for the same IRepository?
I've been trying to come up with a way to write generic repositories that work against various data stores:
public interface IRepository
{
IQueryable<T> GetAll<T>();
void Save<...
0
votes
3
answers
258
views
Getting String Sets into Presentation Layer
We're working on an hospital information system that is being written on C# and using NHibernate to map objects to database. MVC pattern is being used to separate business logic from UI. Here is the ...
4
votes
2
answers
184
views
Entity Perspectives
Context:
So, I am attempting to build a ridiculously complex domain model. Talking with the users, there are multiple ways the system will be used (For example: one way is from the perspective of ...
3
votes
3
answers
4k
views
DDD and Asynchronous Repositories
We're working on a rich client (written in Flex) that is connected to a Java backend, using both RMI and JMS. I was thinking about implementing the client in a DDD fashion so that it has Repositories ...
13
votes
10
answers
5k
views
Domain Specific Languages (DSL) and Domain Driven Design (DDD)
What is the differences and similarities between Domain Specific Languages (DSL) and Domain Driven Design (DDD)?
26
votes
9
answers
13k
views
Where can I find good Domain Driven Design resources? [closed]
What are the best places to find out everything there is to know about Domain-Driven Design, from beginner to advanced.
Books
Websites
Mailing lists
User groups
Conferences
etc
50
votes
7
answers
8k
views
What is domain driven design? [closed]
So I got this question from one of the developers in my team: What is domain driven design? I could of course point to the book from Evans but is that actually an answer?
How would you explain DDD ...
10
votes
6
answers
4k
views
data access in DDD?
After reading Evan's and Nilsson's books I am still not sure how to manage Data access in a domain driven project. Should the CRUD methods be part of the repositories, i.e. OrderRepository....
2
votes
6
answers
3k
views
Companies doing Domain driven design [closed]
I've just finished reading Domain Driven Design and I'm enchanted with some of the ideas covered in it. Do you know any companies that implement ubiquitous language in their projects?
6
votes
3
answers
4k
views
Lazy Loading with a WCF Service Domain Model?
I'm looking to push my domain model into a WCF Service API and wanted to get some thoughts on lazy loading techniques with this type of setup.
Any suggestions when taking this approach?
when I ...
19
votes
5
answers
4k
views
Am I allowed to have "incomplete" aggregates in DDD?
DDD states that you should only ever access entities through their aggregate root. So say for instance that you have an aggregate root X which potentially has a lot of child Y entities. Now, for some ...