NHibernate - filtering out results based on child-property
问题 I have this code fetching all enabled Groups with their children. The problem I have is that the children can also be disabled but I can't get fluent nhibernate to only fetch groups where all childrens are enabled. I assume this is possible but how? public class Group { public bool IsDisabled { get; set; } public string Description { get; set; } public ICollection<ChildType> Children { get; protected set; } } public class ChildType { public bool IsDisabled { get; set; } public string