How can I specify eager loading on a one to many collection within a Fluent NHibernate mapping?
I tried the following but I'm still getting two queries when retrieving the parent object and accessing it's "Features" property:
HasMany<FeatureInstance>(s => s.Features).AsSet()
.Inverse()
.Cascade.SaveUpdate()
.KeyColumn("SiteId")
.Access.ReadOnlyPropertyThroughCamelCaseField()
.Not.LazyLoad();
Thanks Ben