I was wondering how I would handle aggregate roots containing collections with lots of objects.
how
public class AggregateRoot
{
public ICollection<Child> Children { get; set; }
}
How can I request a child collection for specific children? I am using Nhibernate btw.
Chris source
share