views:

171

answers:

2

I'm trying to use the Repository pattern for my current project and i'm currently in the process of trying to model the domain and find the aggregate roots.

I've read of the 'Cascading Delete' rule which states that if it doesn't make sense to delete a member when the root is deleted then it shouldn't be part of the root.

I'll use a Police incident as an eample :-

Incident (Aggregate root) - This could contain investigating officers, notes made by each officer. It could also contain suspects with a list of dates that were interviewed. Was CCTV footage obtained for the incident? A log of each time the CCTV was viewed and by who? Were copies made of the CCTV for evidence/court etc

It seems like the IncidentAggregate could become huge since it appears that everything hangs on that incident.

My question is twofold, how much should the aggregate root manage and, are roots within roots a good idea?

This may not be a particularly good example since you'd probably never remove something like a police incident but i hope it describes my question better.

+4  A: 

An aggregate usually contains references to other aggregate roots. These references should be deleted when the containing aggregate is deleted, but the aggregates they point to would remain.

To use your analogy. A report we shall assume is a part of only one incident aggregate, and would deleted along with the aggregate. No other aggregate would directly access these reports.

However, the incident aggregate would reference aggregates representing officers, and suspects, and CCTV viewing logs entries.

Kurt
+3  A: 

An aggregate is a group of objects with the same lifecycle.

If you deleted an incident would you also want to delete the investigating officer? No – if you did you’d soon have no policemen left. The investigating officer is not in the incident aggregate.

Of the other things you list, suspects, interviews, CCTV etc. The answer is – it depends.

It depends on your problem domain. What is your system doing? what is its scope? what problem is it solving?

If it’s only job is to track a string of incidents and assuming suspects, interviews and CCTV are only in the system as a result of a single incident, then yes, having them all in one aggregate could be appropriate. If the incident is deleted the suspects, interviews and CCTV can go.

If, for example, your also tracking archives of CCTV footage collected from a network of city centre cameras. Maybe your trying to monitor their effectiveness and reliability. If so you need to treat CCTV footage differently. It would be in a different aggregate with its own lifecycle. If you delete an incident you still want to keep your CCTV footage for other incidents and performance metrics.

What is in and out of an aggregate depends on your problem domain. Or more precisely it depends on the way you’ve modelled the problem domain solution.

Think lifecycle.

Royd Brayshay