Tagged Questions

14
votes
3answers
973 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, ...
8
votes
8answers
788 views

If you are forced to use an Anemic domain model, where do you put your business logic and calculated fields?

Our current O/RM tool does not really allow for rich domain models, so we are forced to utilize anemic (DTO) entities everywhere. This has worked fine, but I continue to struggle with where to put ...
6
votes
2answers
384 views

DDD, Entity Framework, Aggregate Entity Behavior ( Person.AddEmail, etc)

Here's a simple example of a problem I'm running across that is not meshing with some of the ideas presented here and other places regarding DDD. Say I have an ASP.NET MVC 3 site that ...
4
votes
4answers
265 views

Concrete examples on why the 'Anemic Domain Model' is considered an anti-pattern

I apologize if this is a duplicate, but I couldn't find any concrete examples on the topic in related questions. After reading Martin Fowler's article on the 'Anemic Domain Model', I'm left wandering ...
2
votes
3answers
93 views

How Single Responsibility Principle relates to anemic/rich domain model?

Currently in doing some code review of stuff taken over from another team and have one doubt about applying SRP and its relation to anemic or rich domain model (as defined by Martin Fowler). Rich ...
2
votes
3answers
133 views

Domain driven design: Avoiding anemic domains and modelling real world roles

I'm looking for some advice on how much I should be concerned around avoiding the anemic domain model. We are just starting on DDD and are struggling with analysis paralysis regarding simple design ...
2
votes
1answer
195 views

Should you use Entity Beans for Domain Model

given the deprecation of loads of design patterns because of the new improvements in the Java EE world, DTO's are largely frowned upon. However, I dont want the relational structure of database to ...
1
vote
3answers
101 views

how to avoid anemic domain model?

I'm trying to learn Domain Driven Design by example and I need your advice. Let's say I have an entity called Tender. I receive a Soap Message from outer service; the message has all the information ...
1
vote
1answer
226 views

Pros and Cons of Anemic Domain Model [closed]

Possible Duplicate: Anemic Domain Model: Pros/Cons What are pros and cons of Anemic Domain Model in your experience? Despite what wiki says. Update: I'm after answers that are based on ...
0
votes
2answers
60 views

anemic domain model and domain services

If domain entities aren't anemic, so they embed specific-usage behavior inside themselfes, is there a need/point to use/build specific domain services? How about validation should it go inside an ...
0
votes
1answer
388 views

Can I use a rich domain model with WCF?

Is it possible to use DDD and a rich domain model if your application is like: windows client (WPF) windows service And communication happens with WCF? I'm used to have DTO's with only data ...