AutoMap Inheritance
I'm new to Fluent & nHibernate. So far most everything is mapping great. One issue so far:
BaseEntiry (abstract)
-> Parent
-> Child
I am using Joined subclass strategy but the child is not mapping and I get a 'An association from the table 'whatever' refers to an unmapped class' exception.
I can see the child entity in my IJoinedSubclassConvention implementation when I stop in debug mode. I can see the child in the FluentHibernate.Cfg.MappingConfiguration. But when I WriteMappingsTo(), it does not write a mapping.
Is there any way to automap or FluentMap this type of inheritance?
Sorry if this has already been answered. I tried to research before posting.
Thanks for you help. This is a great product!
Bill