I\'m trying filter the child collection of an aggregate root when loading it with Nhibernate. Load a Customer with all their Orders that have been shipped. Is this possibl
You can also do it using HQL using session.Filter(customer.Orders, "where this.Status == 'Shipped'");