In the context of Domain Driven Design, is a StackOverflow tag (ie. ddd ) a value object or entity?

EDIT:

Imagine, that you have to build SO website. How would you consider 'tag'?

link|improve this question
feedback

4 Answers

To expand a little on awhite's answer a tag is a value type Why? Because it doesn't make sense to have

var tag1 = new Tag("DDD");
var tag2 = new Tag("DDD");
Assert.AreNotEqual(tag1, tag2);

clearly they should be equal to each other because a tag has no identity except for its label. Questions and answers on the other hand are definitely entities

link|improve this answer
Thank you. I couldn't have said it better myself. – awhite Mar 24 '09 at 20:20
Isn't tag label his identity itself? – Bartek Szabat Mar 24 '09 at 20:38
Its not that value types don't have an identity its that all instances of a particular sort have the same identity – George Mauer Mar 24 '09 at 20:48
1  
You have to render user's tag list on user page. Doesn't it make 'tag' an entity? I'm noob to DDD, can you explain more ? :) – Bartek Szabat Mar 24 '09 at 21:30
Me too but I think I get it. Each question has a reference to a list of tags & questions can be looked up by user. For tag you override Equals to only consider the label. This means tags of different questions can be meaningfully compared and they can be implemented in the db as a datatype – George Mauer Mar 25 '09 at 1:01
show 1 more comment
feedback

SO tag is most likely an entity. Tags can be created, merged, deleted and renamed. There are features like 'similar tags', user's tags etc. Some of these functions, especially life cycle, will require an identity. Classic DDD example where Person that changes his/her name is still the same person, the same identity. The same with tags where user can decide to rename "domain-driven-design" to "DDD" and it will still be the same thing. Tags also need additional attributes like tag.Id, tag.Name, tag.CreatedOn, tag.CreatedBy, tag.Locked etc. There would probably be a corresponding tags repository that can enforce name uniqueness rule.

To summarize, SO Tag is not a DDD Value Object because it is mutable and has a life cycle. More importantly, Tag is not only a characteristic of a Question (this is what I think was overlooked by other answers). It participates in a lot more relationships than that. In other words, Tag is more than just a sum of its attributes, it also has 'conceptual identity'. On the other hand TagName is a perfect example of Value Object. Its only purpose in life is to describe another entity (Tag). TagName is nothing more than just a string that may have a few built in rules like max length and case insensitive comparison. It may also make sense to simply use String instead.

Code that displays questions may use something like this:

IList<TagName> tags = question.GetTags();

Code that tags the question can look like this:

void TagQuestion(Question q, TagName tagName) {
    Tag tag = _tagsRepository.FindByName(tagName);
    if (tag == null) {
        tag = CreateNewTag( /* capture creator, date, other rules*/);
    }
    q.AddTag(tag);
}
link|improve this answer
1  
Not to mention that on SO tags have summaries and entire wikis associated with them... – Joel Mueller Aug 13 '11 at 15:39
feedback

value type

link|improve this answer
feedback

Just some additional considerations: Tags can be normalized, "DDD" should be equal to "ddd" and "DdD", and in most tag systems, spaces get replaced with "_" underscores. Also I guess the creator will be tracked for the badge system.

link|improve this answer
1  
Those are certainly worthwhile considerations. Let me point out that a value type (tag) can reference an entity (user) – George Mauer Mar 24 '09 at 20:35
feedback

Your Answer

 
or
required, but never shown

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