A lot of our objects have relations that are defined with a start - endDate. This makes it hard to model our domain. for example: a person belongs to a serie, and a serie belongs to an organisation, and an organisation belongs to a location, ... All these relationships have a start and enddate. How can we model this. Now, we keep lists that identify these relations in time, and we constantly need to loop this list to find a valid object on a certain date.

link|improve this question
feedback

1 Answer

One possible option would be to keep the entities as is, but remove the time aspect from the object and create a separate entity that couples these object together based on a time range property.

You then could use composition to associate the objects.

For example if your organization had a property that was this "time relationship" object it would know if it belonged to a location based on this property.

Hope this helps a little.

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.