Josh Schwartzberg on Enterprise DevelopmentStanding on the shoulders of the CLRNHibernate querying without mapping inverse relationships- February 28, 2008 In my neverending quest to keep my domain minimal, I ran into a query that I wanted to perform with NHibernate that seems to be impossible without adding an additional property and hbm mapping definition. Note: I still consider myself rather new to NHibernate, so this might have an obvious answer. Let's say I have following two classes:public class School : EntityBase public string Name get; set; public IList<Student> Students ...http://weblogs.asp.net/dotjosh/archive/2008/02/28/nhibernate-querying-without-inverse-rela... |