I'm using fluent nHibernate to map a a database flag column "Y"/"N" to bool
property:
Map(x => x.Enabled).Column("ENABLED_FLAG").CustomType("YesNo");
The question is, how would one specify how to map a null? Will the null be mapped to true, false, exception?
Update
The default settings seems to map NULL to false. I like that, but still wondering how I could override that to be true?