Meaning of 'Disabled ghost property fetching for <entity> because it does not support lazy at the entity level'
问题 I have seen this warning in my NHibernate-DataAccess: 'Disabled ghost property fetching for entity because it does not support lazy at the entity level' Does someone know, what does this mean? - What does I have to change to solve this? Here is a mapping for an entity, which is causing this warning: public class BusinessTypeMap : ClassMap<BusinessType> { public BusinessTypeMap() { this.Table("BusinessType"); this.Version(x => x.ObjectVersion); this.Id(x => x.Id).GeneratedBy.Assigned(); this