What is an Aggregate Root in the context of Repository Pattern?

  • A boundary object around a group of objects, that ensures the consistency of the data
  • A special type of object that implements data access logic
  • An object that is the only object that should be accessed directly, while all other objects are accessed through it
  • An object that is the parent of all other objects in the aggregate and controls the consistency of all objects in the aggregate
An Aggregate Root in the context of Repository Pattern is a boundary object around a group of objects, which ensures the consistency of the data. It is the parent of all other objects in the aggregate and controls the consistency of all objects in the aggregate.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *