Tagged Questions
A domain model is "anemic" if it has little or no behavior (methods).
17
votes
3answers
800 views
Avoiding anemic domain model - a real example
I am trying to understand Anemic Domain Models and why they are supposedly an anti-pattern.
Here is a real world example.
I have an Employee class, which has a ton of properties - name, gender, ...
14
votes
3answers
976 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
789 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
385 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 ...
6
votes
2answers
293 views
which metric(s) show the difference between object-oriented and procedural code
Which metric(s) could help to indicate that i have procedural code instead of object-oriented code? I would like to have a set of simple metrics, which indicate with a high probability, that the ...
4
votes
4answers
266 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 ...
3
votes
2answers
261 views
Is this an anemic domain model?
I'm trying to build my first CRUD application, and I don't understand if I should use an object containing getters and setters separated.
Considering that we have the Zend Framework Quick Start ...
2
votes
3answers
94 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
2answers
82 views
Domain Model architecture project in ASP.NET MVC
Are there any open source projects in ASP.NET MVC that use the Domain Model architecture instead of the Transaction Script (Service Layer) architecture? I'm looking for more of a project then just ...
2
votes
3answers
136 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
4answers
313 views
Is this a proper implementation of n-layer architecture?
I have been learning C# for the last year or so and trying to incorporate best practices along the way. Between StackOverflow and other web resources, I thought I was on the right track to properly ...
2
votes
1answer
196 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
104 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
63 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
47 views
Anemic domain object?
In my system, an user can publish any number of trips. Mi User class (domain object) is like this
public class User {
private String name;
private String id;
/* More private fields */
...
0
votes
1answer
103 views
Scala, Spring and ActiveRecord with decoupled persistence
I've been doing some reading lately and one thing that I've come across was this article about the Anaemic Domain Model from Martin Fowler. I know, it's old, but somehow very actual in Java world. So ...
0
votes
1answer
107 views
JPA/Hibernate: Sub-typing vs. strategy 'pattern'
The following is a JPA annotated type hierarchy, in which all data fields (and associated getters and setters) are members of the supertype along with abstract methods for implementing business logic. ...
0
votes
2answers
40 views
Should I populate member variables with data from a database in the constructor
I am constructing an object using data from a database table by passing the primary key of the row of data I want to use to construct the object.
Should the population of the member varibles of this ...
0
votes
2answers
387 views
ObjectContext aware entity in EF to avoid Anemic Domain Model
In Entity Framework, is it possible to make the framework inject the DbContext into each object (entity) that is attached to or retrieved from the Context?
I'm an NHibernate guy and I know it is ...
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 ...