Been watching some Greg Young videos lately and I'm trying to understand why there is a negative attitude towards Setters on Domain objects. I thought Domain objects were supposed to be "heavy" with logic in DDD. Are there any good examples online of the bad example and then they way to correct it? Any examples or explanations are good. Does this only apply to Events stored in a CQRS manner or does this apply to all of DDD?

link|improve this question

71% accept rate
feedback

6 Answers

The reason behind this is that the entity itself should be responsible for changing its state. There isn't really any reason why you should need to set a property anywhere outside the entity itself.

A simple example would be a entity that has a name. If you have a public setter you would be able to change the name of a entity from anywhere in you application. If you instead remove that setter and put a method like ChangeName(string name) to your entity that will be the only way to change the name. That way you can add any kind of logic that will always run when you change the name because there is only one way to change it. This is also a lot clearer then just setting the name to something.

Basically this means that you expose the behavior on your entities publicly while you keep the state privately.

link|improve this answer
And it will be a setter again. But in this case you have a method (or a message consumer) instead of property and it make your domain object to be active (not just DTO). And why you need (or need not) to do that explained in the article martinfowler.com/bliki/AnemicDomainModel.html – Vsevolod Parfenov Dec 16 '10 at 19:34
@Vsevolod Parfenov, Exactly. Now this was a very simple example. But sometimes you might need to add some kind of logic to that method. Maybe you also want to update some other field. – Mattias Jakobsson Dec 17 '10 at 8:28
feedback

Setters doesnt carry any semantic information.

e.g.

blogpost.PublishDate = DateTime.Now;

Does that mean that the post has been published? Or just that the publish date have been set?

Consider:

blogpost.Publish();

This clearly shows the intention that the blogpost should be published.

Also, setters may break the object invariants. For example if we have a "Triangle" entity, the invariant should be that the sum of all angles should be 180 degrees.

Assert.AreEqual (t.A + t.B + t.C ,180);

Now if we have setters, we can easily break the invariants:

t.A = 0;
t.B = 0;
t.C = 0;

So we have a triangle where the sum of all angles are 0... Is that really a Triangle? I'd say no.

Replacing setters with methods could force us to maintain invariants:

t.SetAngles(0,0,0); //should fail 

Such call should throw an exception telling you that this causes an invalid state for your entity.

So you get semantics and invariants with methods instead of setters.

link|improve this answer
feedback

A setter simply sets a value. It is not supposed to be "heavy" with logic.

Methods on your objects that have good descriptive names should be the ones "heavy" with logic and have an analogue in the domain itself.

link|improve this answer
feedback

I strongly recommend reading the DDD book by Eric Evans and Object-Oriented Software Construction by Bertrand Meyer. They have all the samples you would ever need.

link|improve this answer
feedback

The original question is tagged .net, so I'll submit a pragmatic approach for the context where you'd like to bind your entities directly to a view.

I know that that's bad practice, and that you should probably have a view model (as in MVVM) or the like, but for some small apps it just makes sense to not over-patternize IMHO.

Using properties is the way out-of-the box data binding works in .net. Maybe the context stipulates that the data binding should work both ways, and hence implementing INotifyPropertyChanged and raising PropertyChanged as a part of the setter logic makes sense.

The entity could e.g. add an item to a broken rule collection or the like (I know CSLA had that concept a few years back and maybe still does) when the client sets an invalid value, and that collection could be shown in the UI. The unit of work would later refuse to persist invalid objects, if it should come that far.

I'm trying to justify decoupling, immutability, and so forth to a large extent. I'm just saying that in some contexts a simpler architecture is called for.

link|improve this answer
+1 I'm sturggling with the concept for the exact reasons you listed. Am familiar with the Silverlight MVVM and old experience with some CSLA. Would love to see comments from other .NET developers. – brun Dec 17 '10 at 0:00
feedback

I may be off here, but I believe setters should be used to set, as opposed to setter methods. I have a few reasons for this.

a) It makes sense in .Net. Every developer knows about properties. That's how you set things on an object. Why deviate from that for domain objects?

b) Setters can have code. Before 3.5 I believe, setting an object consisted of an internal variable and a property signature

private object _someProperty = null;
public object SomeProperty{
    get { return _someProperty; }
    set { _someProperty = value; }
}

It is very easy and imo elegant to put validation in the setter. In IL, getters and setters are converted into methods anyway. Why duplicate code?

In the example of the Publish() method posted above, I completely agree. There are times when we don't want other developers setting a property. That should be handled by a method. However does it make sense to have a setter method for every property when .Net provides all the functionality we need in the property declaration already?

If you have a Person object, why create methods for every property on it if there's no reason?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.