Techniques for dealing with anemic domain model - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T07:01:50Zhttp://stackoverflow.com/feeds/question/609499http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/609499/techniques-for-dealing-with-anemic-domain-model6Techniques for dealing with anemic domain modelAndy White2009-03-04T07:00:58Z2009-05-21T13:46:04Z
<p>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 have a pretty anemic model, and we're currently using "helper" classes to perform the database/business logic on the domain objects. For example:</p>
<pre><code>public class Customer
{
public string Name {get;set;}
public string Address {get;set;}
}
public class Product
{
public string Name {get;set;}
public decimal Price {get;set;}
}
public class StoreHelper
{
public void PurchaseProduct(Customer c, Product p)
{
// Lookup Customer and Product in db
// Create records for purchase
// etc.
}
}
</code></pre>
<p>When the app needs to do a purchase, it would create the StoreHelper, and call the method on the domain objects. To me, it would make sense for the Customer/Product to know how to save itself to a repository, but you probably wouldn't want Save() methods on the domain objects. It would also make sense for a method like Customer.Purchase(Product), but that is putting domain logic on the entity.</p>
<p>Here are some techniques I've come across, not sure which are good/bad:</p>
<ol>
<li>Customer and Product inherit from an "Entity" class, which provides the basic CRUD operations in a generic fashion (using an ORM maybe).
<ul>
<li>Pros: Each data object would automatically get the CRUD operations, but are then tied to the database/ORM</li>
<li>Cons: This does not solve the problem of business operations on the objects, and also ties all domain objects to a base Entity that might not be appropriate</li>
</ul></li>
<li>Use helper classes to handle the CRUD operations and business logic
<ul>
<li>Does it make sense to have DAOs for the "pure database" operations, and separate business helpers for the more business-specific operations?</li>
<li>Is it better to use non-static or static helper classes for this?</li>
<li>Pros: domain objects are not tied to any database/business logic (completely anemic)</li>
<li>Cons: not very OO, not very natural to use helpers in application code (looks like C code)</li>
</ul></li>
<li>Use the Double Dispatch technique where the entity has methods to save to an arbitrary repository
<ul>
<li>Pros: better separation of concerns</li>
<li>Cons: entities have some extra logic attached (although it's decoupled)</li>
</ul></li>
<li>In C# 3.0, you could use extension methods to attach the CRUD/business methods to a domain object without touching it
<ul>
<li>Is this a valid approach? What are pros/cons?</li>
</ul></li>
<li>Other techniques?</li>
</ol>
<p>What are the best techniques for handling this? I'm pretty new to DDD (I'm reading the Evans book - so maybe that will open my eyes)</p>
http://stackoverflow.com/questions/609499/techniques-for-dealing-with-anemic-domain-model/609805#6098051Answer by MrTelly for Techniques for dealing with anemic domain modelMrTelly2009-03-04T09:12:49Z2009-03-04T09:12:49Z<p>I've always thought of the anemic domain model as an anti pattern. It's clear that a customer will purchase products, that ability can be generised by an interface implementation</p>
<pre><code>Interface IPurchase
Purchase(Product);
</code></pre>
<p>, so a any of your domain objects can then implement that as required. In that way you can introduce functionality to your domain objects - which is exactly where it should be.</p>
http://stackoverflow.com/questions/609499/techniques-for-dealing-with-anemic-domain-model/621519#6215193Answer by cpeterso for Techniques for dealing with anemic domain modelcpeterso2009-03-07T08:13:37Z2009-03-07T08:13:37Z<p>Martin Fowler has written a lot about domain models, including <a href="http://martinfowler.com/bliki/AnemicDomainModel.html" rel="nofollow">anemic domain models</a>. He also has brief descriptions (and UML class diagrams) of many design patterns for domain models and databases that might be helpful: <a href="http://martinfowler.com/eaaCatalog/" rel="nofollow">Catalog of "Patterns of Enterprise Application Architecture"</a>.</p>
<p>I would suggest looking at the <a href="http://martinfowler.com/eaaCatalog/activeRecord.html" rel="nofollow">Active Record</a> and <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">Data Mapper</a> patterns. From the description of your problem, it sounds like your helper classes contain both domain/business rules <em>and</em> database implementation details. </p>
<p>The Active Record would move the helper's domain logic and database code into the other domain objects (like your <code>Entity</code> base class). The Data Mapper would move the helper's domain logic into the domain objects and the database code into a separate map object. Either approach would be more object-oriented than procedural-style helper classes.</p>
<p>Eric Evans' "Domain Driven Design" book is excellent. It gets a bit dry, but is definitely worth it. InfoQ has a <a href="http://www.infoq.com/minibooks/domain-driven-design-quickly" rel="nofollow">"Domain Driven Design Quickly" mini-book</a> that is a good introduction to Evans' book. Plus "Domain Driven Design Quickly" is available as a free PDF.</p>
http://stackoverflow.com/questions/609499/techniques-for-dealing-with-anemic-domain-model/893006#8930062Answer by Arnis L. for Techniques for dealing with anemic domain modelArnis L.2009-05-21T13:46:04Z2009-05-21T13:46:04Z<p>In order to avoid anemic model, refactor your helper classes:</p>
<p>Logic like:<br />
"Customer.PurchaseProduct(Product product, Payment payment)",<br />
"Customer.KillCustomer(Person killer, Weapon weapon)"<br />
should exist right into "Customer" domain object. </p>
<p>Logic like:<br />
"Customer.IsCustomerAlive()"<br />
"Customer.IsCustomerHappy()"<br />
should go to specifications.</p>
<p>Logic like:<br />
"Customer.Create()",<br />
"Customer.Update()"<br />
obviously should go to repositories. </p>
<p>Logic like:<br />
"Customer.SerializeInXml()"<br />
"Customer.GetSerializedCustomerSizeInBytes()"<br />
should go to services.</p>
<p>Complex constructors should go to factories. </p>
<p>That's how i see it. I would be glad if someone could comment my understanding of DDD approach.</p>