vote up 7 vote down star
4

I'm just learning DDD (Eric Evans book is open in front of me) and I've come across a problem that I can't find an answer for. What do you do in DDD when you're just trying to get a simple list of lookup records?

Ex.

EmployeeID: 123
EmployeeName: John Doe
State: Alaska (drop-down)
County: Wasilla (drop-down -- will be filtered based on state).

For example, let's say that you have an Employee domain object, an IEmployeeRepository interface and an EmployeeRepository class. This will be used by a UI to show a list of employees and individual details. In the UI, you want to use a drop-down for the State and County where the employee lives. The Available counties will be filtered based on which state was chosen.

Unfortunately, the database tables and the UI look very different. In tblEmployees, it contains State Code=AK and County Code=02130, not the State and County Names.

The old way (before I began this DDD quest) would be pretty straightforward, just create 2 queries and use a DataReader to populate the drop-downs. Underneath the display in the drop-downs is the value, which gets automatically used in form posts.

With DDD, though, I'm not sure how you're supposed to do this. I first started by creating State and County objects as well repositories and interfaces for the repositories. However, writing 4 classes + 2 interfaces and the plumbing in the hbm.xml files + Employee Business objects seems like overkill for just 2 queries for 2 drop-downs. There has to be a better way, doesn't there? I'm not changing the records in the State or County tables any time soon and even if I did, it wouldn't be through this application. So I don't really want to create business objects for State and County if I don't have to.

The simplest solution that I see is to just create a helper class with methods that return dictionaries, such as GetStatesAll(), GetState() and GetCounties() and GetCounty(), but that just feels wrong from a DDD perspective.

Please help. How can I use DDD without overengineering just a couple of simple lookups?

Final Solution I think that I finally found my answer through experience, which was to put the GetStates() method into its own Data Access class, though not a repository class. Since I was only doing read-only access, I through it into a struct DTO. Since the database was small, I through them altogether into a single class, like Todd below described.

My conclusions:

  1. Lookup tables are NEVER value objects, because lookup tables ALWAYS have an identity. If they didn't have an identity, you'd have duplicates, which wouldn't make much sense.
  2. Read-only lookup table can have a repository, but probably don't need one. The goal of a repository is to reduce complexity by forcing access only through the aggregate. Going through the aggregate provides you with a way to ensure that business rules can be enforced, such as not adding tires if you don't have a car.
  3. If you allow CRUD maintenance on the lookup table, then it makes sense for the lookup table to have its own repository.
  4. The fact that I ended up storing the codes as structs doesn't make them "value types". Fowler says in POEAA that a struct is a value type. That's true, structs are immutable, which is why Fowler says that they are "value types", however I was using them differently. I was using structs as a lightweight way to pass around DTOs that I didn't ever plan on changing after their initial creation. In truth, the structs that I used did, indeed, have identities, but since they were read-only they worked as structs.
  5. One pattern that I've been using that I don't see much elsewhere is to make primary key fields be immutable. They're set by the constructor, but they're read-only (not private accessors) and cannot be changed once the object is created.
flag

78% accept rate
Did you get a solution for this? if yes ... please post it below ... thanks – jalchr Oct 15 at 5:40
Excellent wrap-up. This kind of follow-up is all-too-rare. – Jeff Sternal Nov 17 at 15:45

4 Answers

vote up 1 vote down check

You may want to look into the concept of Command Query Separation. I wouldn't worry about typed repositories for lookup values, but I'd still probably use DTO type classes over datasets etc...

You may want to spend some time reading Greg Young's blogs starting from this one to the present. He doesn't talk about filling lookup data specifically but he often talks about not handling the reading/reporting functionality of your application through typed methods on a repository.

link|flag
Thanks. I'm not sure that it's an exact answer, but it gets me on the right track which is "what's the best way to retrieve read-only data". – John Apr 30 at 22:20
vote up 1 vote down

Using DDD I have something similar with the following:

interface IAddressService
{
  IList<Country> GetCountries ();
  IList<State> GetStatesByCountry (string country);
  IList<City> GetCitiesByState (string state);
  // snip
}

Country, State and City are value objects which come from a lookup table in the database.

link|flag
vote up 1 vote down

You're reading the wrong book if you want to learn how to do DDD without over complicating it. :-)

The simplest solution you're proposing is fine if it meets your needs. Encapsulating address data in business objects can be as simple or as complicated as your application demands. For example, the State object has a one-to-many relationship with County so Employee really just needs to reference a County if you chose to model it that way. I would only introduce that sort of complexity if required.

Additionally, I don't think there's much to be gained by defining interfaces for your repositories unless there's a real possibility that you might have multiple repositories for your objects.

link|flag
My understanding is that you're not really doing DDD if you're not using interfaces for your repositories. And doesn't creating an interface for your repository more easily enable you to do mocks? Regardless, in Visual Studio it takes all of 1 second to generate an interface from a class you designed, so I don't really see a downside to using interface. Thanks. – John Apr 30 at 20:31
What's the point of an interface if you only have one class that implements it? Concrete classes are just as mockable as interfaces. I do think that interfaces are valuable for services classes that may have more than one implementation and if you're using a dependency injection framework. – Jamie Ide Apr 30 at 21:42
I would also argue that extracting an interface from a class is a backward approach -- the contract should be designed before the implementation. Done this way, interfaces do have an advantage for unit testing because tests can created using mocked interfaces before any concrete implementations are coded. – Jamie Ide Apr 30 at 21:44
OK, it looks like I was mixing up Palermo's "Onion" framework, which does require interfaces for the repositories, with DDD. Also, every example that I come across so far showsg DDD repositories using interfaces, but that's probably a SOLID thing, not a DDD thing. Actually, what I do is create the class and stubs in Visual Studio's class designer, extract an interface and afterwards write the code. So I do agree -- interface before implementation. Thanks. – John Apr 30 at 22:09
1  
The point of having an interface for that only class is to be able to test it. You can then stub it, mock it ... eat it if you like ... I agree with john ... you are doing well ... go ahead – jalchr Oct 3 at 20:38
vote up 1 vote down

The state and county are not entities, but value objects. They are not the subject of your system. The way you said you treated these previously is OK. When will you change the state or county records in your database, based on the changes in the state of your domain model? Not, so these will not need a repository.

link|flag
OK, That makes some sense. What threw me off somewhat was the fact that I am interested in the ID field of the objects, but that doesn't necessarily make them "entities", does it. Where do you put the creation of all the value objects go? Into a global ValueObjectFactory class? Is there a best practice? – John Apr 30 at 20:45

Your Answer

Get an OpenID
or

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