Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DDD: Should everything fit into either Entity or Value Object?

I'm trying to follow DDD, or a least my limited understanding of it.

I'm having trouble fitting a few things into the DDD boxes though.

An example: I have a User Entity. This user Entity has a reference to a UserPreferencesInfo object - this is just a class which contains a bunch of properties regarding user preferences. These properties are fairly unrelated, other than the fact that they are all user preferences (unlike say an Address VO, where all the properties form a meaningful whole).

Question is - what is this UserPreferencesInfo object?

1) Obviously it's not an Entity (I'm just storing it as 'component' in fluent nhibernate speak (i.e. in the same DB table as the User entity).

2) VO? I understand that Value Object are supposed to be Immutable (so you cant cange them, just new them up). This makes complete sense when the object is an address for instance (the address properties form a meaningful 'whole'). But in the case of UserPreferencesInfo I don't think it makes sense. There could be 100 properties (Realistically) There could be maybe 20 properties on this object - why would I want to discard an recreate the object whenever I needed to change one property?

I feel like I need to break the rules here to get what I need, but I don't really like the idea of that (it's a slippery slope!). Am I missing something here?

Thanks

like image 712
UpTheCreek Avatar asked Oct 18 '09 11:10

UpTheCreek


People also ask

What is the difference between entity and value object in DDD?

The main difference between entities and value objects lies in the way we compare their instances to each other. The concept of identifier equality refers to entities, whereas the concept of structural equality - to value objects. In other words, entities possess inherent identity while value objects don't.

Can value objects reference entities?

However, there are many objects and data items in a system that do not require an identity and identity tracking, such as value objects. A value object can reference other entities.

What is a DDD value object?

Value Object is an object that represents a concept from your problem Domain. It is important in DDD that Value Objects support and enrich Ubiquitous Language of your Domain. They are not just primitives that represent some values - they are domain citizens that model behaviour of your application.

Can objects be entities?

Object is an entity that has all the attributes and the actions required to be taken. 2. An entity contains of attributes. An object has life span, object identifier.


3 Answers

Answer 1 (the practical one)

I'm a huge proponent of DDD, but don't force it. You've already recognised that immutable VOs add more work than is required. DDD is designed to harness complexity, but in this case there is very little complexity to manage.

I would simply treat UserPreferencesInfo as an Entity, and reference it from the User aggregate. Whether you store it as a Component or in a separate table is your choice.

IMHO, the whole Entity vs VO debate can be rendered moot. It's highly unlikely that in 6 months time, another developer will look at your code and say "WTF! He's not using immutable VOs! What the heck was he thinking!!".

Answer 2 (the DDD purist)

Is UserPreferencesInfo actually part of the business domain? Others have mentioned disecting this object. But if you stick to pure DDD, you might need to determine which preferences belong to which Bounded Context.

This in turn could lead to adding Service Layers, and before you know it, you've over-engineered the solution for a very simple problem...

like image 81
Vijay Patel Avatar answered Oct 08 '22 14:10

Vijay Patel


Here's my two cents. Short answer: UserPreferenceInfo is a value object because it describes the characteristics of an object. It's not an entity because there's no need to track an object instance over time.

Longer answer: an object with 100+ properties which are not related is not very DDD-ish. Try to group related properties together to form new VOs or you might discover new entities as well.

Another DDD smell is to have a lot of set properties in the first place. Try to find the essence of the action instead of only setting the value. Example:

// not ddd 
employee.Salary = newSalary;

// more ddd
employee.GiveRaise(newSalary);

On the other hand you may very well have legitimate reasons to have a bunch of properties that are no more than getters and setters. But then there's probably simpler methods than DDD to solve the problem. There's nothing wrong with taking the best patterns and ideas from DDD but relax a little of all the "rules", especially for simpler domains.

like image 4
Dala Avatar answered Oct 08 '22 15:10

Dala


I'd say a UserPreferenceInfo is actually a part of the User aggregate root. It should be the responsibility of the UserRepository to persist the User Aggregate Root.

Value objects only need to be newed up (in your object model) when their values are shared. A sample scenario for that would be if you check for a similar UserPreferenceInfo and associate the User with that instead of Inserting a new one everytime. Sharing Value Objects make sense if value object tables would get to large and raise speed/storage concerns. The price for sharing is paid on Insert. It is reasonable to abstract this procedure in the DAL.

If you are not shraing value objects, there is nothing against updating.

like image 2
Johannes Rudolph Avatar answered Oct 08 '22 14:10

Johannes Rudolph