Hi all,
I was wondering how I would handle aggregate roots that contain collections with alot of entities.
Like:
public class AggregateRoot
{
public ICollection<Child> Children { get; set; } // 10.000 entities
}
How would I query the child collection to get specific children? I am using Nhibernate btw.