Tagged Questions
4
votes
4answers
344 views
When to separate certain entities into different repositories?
I generally try and keep all related entities in the same repository. The following are entities that have a relationship between the two (marked with indentation):
User
UserPreference
So they ...
2
votes
2answers
140 views
What's the correct way of accessing reference data in this Domain Data Modelling scenario?
Initial Warning: Long post and I might have got the pattern totally wrong anyway:
Given the following class which is the start of the Customer Aggregate:
public class Customer : KeyedObject
{
...
1
vote
1answer
357 views
How to update created and modified fields using the repository design pattern?
I am currently working on my first asp.net mvc application. I am trying to drink the kool-aid of all the the sample projects I see and trying to use the repository design pattern.
I have a interface ...