Using fluent nhibernate, is it possible to map a private property in a base class?
I have this defined in my base class:
private DateTime? lastModifiedDT { get; set; }
but when I map it like so:
Version(Reveal.Property<EntityType>('lastModifiedDT')).ColumnName('LastModifiedDT');
I get a FluentNHibernate.UnknownPropertyException
Try making the property
protectedif you can.