Or do you define a new object that contains the Root Entity object among others?
public class SomeAggregateName()
{
public EntityRoot root {get;set;}
public Entity entity {get;set;}
}
OR Is this the Aggregate implied?
public class EntityRoot()
{
public Entity entity {get;set;}
}