Say i have a entity like this
public class Something
{
public int Id{get;set;}
public string Name{get;set;}
public IList<SomeOther> Assosiation{get;set}
}
how can i query with nhibernate to get all the Something entities with more than 10 Assosiations using Criteria API?
Cheers Colin