Tagged Questions

Domain-driven design (DDD) is an approach to developing software for complex needs by deeply connecting the implementation to an evolving model of the core business concepts.

learn more… | top users | synonyms (1)

58
votes
13answers
3k views

Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC [closed]

I have a fairly slick approach to doing C# development using the above tools/methodologies. Specifically i follow the "Jeffrey Palermo Agile Bootcamp" onion architecture. I feel like I'm a strong ...
46
votes
15answers
982 views

Is non-programmatic software development feasible?

I'm currently faced with a very unusual design problem, and hope that a developer wiser than myself might be able to offer some insight. Background Without being too specific, I've been hired by a ...
39
votes
9answers
10k views

Good Domain Driven Design samples

I'm learning about DDD and enjoying every minute of it. However, there are some practical issues that are confusing to me that I think seeing some good samples might clear up. So being at peace with ...
31
votes
11answers
2k views

Why should I isolate my domain entities from my presentation layer?

One part of domain-driven design that there doesn't seem to be a lot of detail on, is how and why you should isolate your domain model from your interface. I'm trying to convince my colleagues that ...
26
votes
3answers
3k views

How to map View Model back to Domain Model in a POST action?

Every article found in the Internet on using ViewModels and utilizing Automapper gives the guidelines of the "Controller -> View" direction mapping. You take a domain model along with all Select ...
25
votes
3answers
853 views

How to avoid anemic domain models, or when to move methods from the entities into services

I have a common scenario that I am looking for some guidance from people more experienced with DDD and Domain Modeling in general. Say I start out building a blog engine, and the first requirement is ...
25
votes
20answers
2k views

How can I learn to REALLY design software? [closed]

First off, my focus is web development (ASP.net webforms up to now), using C#. But, I am interested in learning design principles that will carry into any technology or language. I have been ready ...
22
votes
13answers
890 views

Clean OO-structure vs. SQL performance

When programming in PHP I always try to create meaningful 'models' (classes) that correspond to tables in the database. I often encounter the following problem: Assuming that I've created a database ...
21
votes
4answers
3k views

Repository Pattern: how to Lazy Load? or, Should I split this Aggregate?

I have a domain model that has the concept of an Editor and a Project. An Editor owns a number of Projects, and a Project has not only an Editor owner, but also a number of Editor members. ...
20
votes
7answers
2k views

CQRS Examples and Screencasts

I'm looking for some in depth end-to-end CQRS examples with a reasonable set of unit tests. Also, if anyone knows of some CQRS screencasts as well it would be extremely handy. I'm already aware of ...
20
votes
7answers
2k views

Is DDD a waste of time?

Googling "What kind of applications is DDD suitable for?" gave me the following answer: Probably 95% of all software applications fall into the “not so good for using DDD” categories. (see the ...
19
votes
19answers
855 views

Truly declarative language?

Does anyone know of a truly declarative language? The behaviour I'm looking for is kind of what Excel does, where I can define variables and formulas, and have the formula's result change when the ...
19
votes
4answers
1k views

What is a practical way to model lookup tables in Domain Driven Design (DDD)?

I'm just learning DDD (Eric Evans book is open in front of me) and I've come across a problem that I can't find an answer for. What do you do in DDD when you're just trying to get a simple list of ...
18
votes
3answers
2k views

Domain Driven Design: Domain Service, Application Service

Can someone explain the difference between domain and application services by providing some examples? And, if a service is a domain service, would I put the actual implementation of this service ...
18
votes
6answers
2k views

Best way to implement Repository Pattern?

I've been exploring BDD/DDD and as a consequence trying to come up with a proper implementation of the Repository pattern. So far, it's been hard to find a consensus over the best way to implement ...
18
votes
9answers
1k views

What is domain driven design?

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 ...
17
votes
3answers
472 views

Reducing Repositories to Aggregate Roots

I currently have a repository for just about every table in the database and would like to further align myself with DDD by reducing them to aggregate roots only. Let’s assume that I have the ...
17
votes
12answers
3k views

Are there any open source projects using DDD (Domain Driven Design)?

I'm trying to understand the concepts behind DDD, but I find it hard to understand just by reading books as they tend to discuss the topic in a rather abstract way. I would like to see some good ...
17
votes
5answers
5k views

Value vs Entity objects (Domain Driven Design)

I have just started reading DDD. I am unable to completely grasp the concept of Entity vs Value objects.. Can someone please explain the problems (maintainability, performance.. etc) a system could ...
16
votes
3answers
467 views

How does a service layer fit into my repository implementation?

I have created a POCO model class and a repository class which handles persistence. Since the POCO cannot access the repository, there are lots of business logic tasks in the repository which doesn't ...
16
votes
13answers
380 views

Is it good practice to use domain objects as keys?

Is is good practice to use domain objects as keys for maps (or "get" methods), or is it better to just use the id of the domain object? It's simpler to explain with an example. Let's say I have ...
16
votes
5answers
505 views

How to avoid having very large objects with Domain Driven Design

We are following Domain Driven Design for the implementation of a large website. However by putting the behaviour on the domain objects we are ending up with some very large classes. For example on ...
16
votes
8answers
2k views

Mapping Validation Attributes From Domain Entity to DTO

I have a standard Domain Layer entity: public class Product { public int Id { get; set; } public string Name { get; set; } public decimal Price { get; set;} } which has some kind of ...
16
votes
8answers
1k views

TDD, DDD and Encapsulation

After several years of following the bad practice handed down from 'architects' at my place of work and thinking that there must be a better way, I've recently been reading up around TDD and DDD and I ...
16
votes
1answer
1k views

How are Value Objects stored in the database?

I haven't really seen any examples, but I assume that they are saved inside the containing entity table within the database. Ie. If I have a Person entity/aggregate root and a corresponding Person ...
15
votes
3answers
642 views

Can Someone Explain DDD In Plain English Please

I keep seeing DDD (Domain Driven Design) being used a lot in articles and people talking about ASP.NET - I have read the Wikipedia entry about DDD but still can't figure out what it actually is and ...
15
votes
5answers
4k views

What Belongs to the Aggregate Root

This is a practical Domain Driven Design question: Conceptually, I think I get Aggregate roots until I go to define one. I have an Employee entity, which has surfaced as an Aggregate root. In the ...
15
votes
2answers
5k views

Entity Framework as Repository and UnitOfWork?

I'm starting a new project and have decided to try to incorporate DDD patterns and also include Linq to Entities. When I look at the EF's ObjectContext it seems to be performing the functions of both ...
14
votes
3answers
677 views

Confused about Spring-Data DDD repository pattern

I don't know so much about DDD repository pattern but the implementation in Spring is confusion me. public interface PersonRepository extends JpaRepository<Person, Long> { … } As the ...
14
votes
2answers
393 views

Functional way of implementing domain driven design

I've had a lot of experience with writing domain driven applications using C#. The more applications I write the more I find that I want to take an approach that doesn't fit that well with standard ...
14
votes
3answers
971 views

anemic domain model versus domain model

Being confused again after reading about this anti-pattern and the many concerns about it here on SO. If I have a domain model and capture the data that must be persisted in a data transfer object, ...
14
votes
10answers
2k views

Choosing between immutable objects and structs for value objects

How do you choose between implementing a value object (the canonical example being an address) as an immutable object or a struct? Are there performance, semantic or any other benefits of choosing ...
13
votes
3answers
985 views

Do we need to use the Repository pattern when working in ASP.NET MVC with ORM solutions?

I am bit curious as to what experience other developers have of applying the Repository pattern when programming in ASP.NET MVC with Entity Framework or NHibernate. It seems to me that this pattern is ...
13
votes
5answers
6k views

.NET DDD Example

Can somebody point me towards a 'complete' DDD example developed on the .NET platform. Most of the examples I find feel 'incomplete'. I'd really like to see the DDD principles in action.
13
votes
3answers
971 views

How do you handle associations between aggregates in DDD?

I'm still wrapping my head around DDD, and one of the stumbling blocks I've encountered is in how to handle associations between separate aggregates. Say I've got one aggregate encapsulating Customers ...
13
votes
3answers
2k views

Validation in a Domain Driven Design

How do you deal with validation on complex aggregates in a domain driven design? Do you consolidate your business rules/validation logic? I understand argument validation. And I understand property ...
12
votes
5answers
479 views

Repository, Pipeline, business logic and domain model - how do I fit these together?

I'm designing N-tier application and I came across a difficulty which you might have a solution to. Presentation layer is MVC. My ORM is carried out using LinqToSQL - it's a seperate project which ...
12
votes
3answers
301 views

What problems do you find with this view on domain-driven design?

I just wrote a long (and messy) blogpost about my view on domain-driven design at present day, with frameworks like spring and hibernate massively in use. I'd ask you to spot any problems with my ...
12
votes
3answers
474 views

Should Domain Entities be exposed as Interfaces or as Plain Objects?

Should Domain Entities be exposed as Interfaces or as Plain Objects ? The User Interface : public interface IUser { string FirstName { get; set; } string LastName { get; set; } string ...
12
votes
5answers
3k views

DTO = ViewModel?

I'm using NHibernate to persist my domain objects. To keep things simple I'm using an ASP.NET MVC project as both my presentation layer, and my service layer. I want to return my domain objects in ...
12
votes
3answers
880 views

Is this really DDD?

I am 80% sure I should not be asking this question because it might come across as negative and I mean no disrespect to anyone, especially the author of this book. I have seen several posts ...
12
votes
6answers
12k views

Using the repository pattern with Entity Framework (mvc storefront)

can anyone give a helping hand, I been watching the videos for the mvc storefront and have create my own website using these techniques i.e. DDD, Repository pattern but i wish to use Entity Framework. ...
12
votes
16answers
1k views

How to convince my co-workers not to use datasets for enterprise development (.NET 2.0+)

Everyone I work with is obsessed with the data-centric approach to enterprise development and hates the idea of using custom collections/objects. What is the best way to convince them otherwise?
11
votes
5answers
242 views

DDD (Domain Driven Design), how to handle entity state changes, and encapsulate business rules that requires large amount of data to be proccessed

public class Person { public IList<String> SpecialBirthPlaces; public static readonly DateTime ImportantDate; public String BirthPlace {get;set;} public DateTime BirthDate { ...
11
votes
4answers
2k views

Techniques for dealing with anemic domain model

I've read some of the questions regarding anemic domain models and separation of concerns. What are the best techniques for performing/attaching domain logic on anemic domain objects? At my job, we ...
11
votes
1answer
1k views

Repository Pattern: What is the 'right size'?

I'm building some repositories for an MVC application, and I'm trying to come up with the right way to divide responsibilities between repositories. In most cases, this is obvious. But there is one ...
11
votes
5answers
3k views

Transactions in the Repository Pattern

How do I encapsulate the saving of more than one entity in a transactional manner using the repository pattern? For example, what if I wanted to add an order and update the customer status based on ...
11
votes
3answers
1k views

Domain Objects and Services

In this question someone replies "You never let the domain object implementations call services by themselves!". Is this statement a hard fast rule of DDD or does it depend on your own application and ...
10
votes
3answers
416 views

Is it possible to use DDD and BDD together?

I like the middle-out development that is achieved with DDD. Development is driven by domain, the most solid part of application. We don't depend on infrastructure, persistence and presentation. That ...
10
votes
1answer
680 views

Alternatives to many-to-many relationships with CQRS

How do we model classic many-to-many relationships with CQRS/DDD? I know that both DDD and CQRS implementations and solutions tend to be domain-specific, so it may be difficult to come up with a ...

1 2 3 4 5 31