In a nutshell, my domain allows users to submit stories (about a person or team of people) that contain a multitude of different states and transitions its can be in and what behavior is allowed during those states.

So, at this state in the design, users are creating drafts and submitting their stories. My domain contains Stories, Teams, and Team Members.

My first question is who has the responsibility to load the complete aggregate? Should the application layer specify this based on the task at hand? Should he really need to know what all data needs loaded? Or should this belong to the repository that always eager loads the associated data? Maybe use lazy loading (transparency can be a little scary)?

For my next task, I need to allow comments to be added to stories and create records whenever a user views a story. Would this belong to the aggregate since they have no meaning without a story? Here is my confusion. If they do belong to the aggregate, I would have to load the entire aggregate when adding a comment or simply adding a record it has been viewed?

Any help would be great and as you can see, I'm new to DDD.

Thanks!

link|improve this question

Marco, two questions: What is your persistence technology? What do you mean by "load the complete aggregate"? – Eric Farr Jul 19 '11 at 16:13
I am using Entity Framework Code First. By load the complete aggreate, I mean when I ask the repository for a Story, should it load the complete aggregate as in Team, Team Members, Comments, Story Views, etc. – Marco Jul 19 '11 at 16:20
feedback

1 Answer

up vote 1 down vote accepted

I'm not sure how this would work in EF, but with NHibernate I would have the application layer load the aggregate root from the repository with lazy-loading enabled (I assume EF has the same lazy-loading capability).

The Comments would be accessed under the aggregate of the Story (again lazy-loading is your friend here).

I would not put the story-views under the story since that sounds like an orthogonal concept to the story itself. I've gotten into trouble before by adding user log-in info (like last log-in time) to the user. It was expedient, but made a mess of my model. Your mileage may vary on that one.

link|improve this answer
ok, gotcha. so is the story view itself its own aggregate? – Marco Jul 19 '11 at 16:48
Probably so. I'd need to know more about your domain, but views may fall within a different bounded context than the core story, comment, team, etc. – Eric Farr Jul 19 '11 at 16:53
ah bounded context, have not dug into that yet in the EE DDD book. The story view object is used only for showing an 'unread story' icon in the UI to indicate new stories to the user. – Marco Jul 19 '11 at 17:00
Yeah, I believe I heard Evans say that if he were to rewrite the book, he'd have moved that up. It ends up being one of the most valuable contributions to the craft. – Eric Farr Jul 19 '11 at 17:06
feedback

Your Answer

 
or
required, but never shown

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