I am attempting a subclass mapping in Fluent NHibernate.
In the parent class mapping, I have to specify the ID column name to prevent FNH guessing incorrectly:
Id(x => x.Id).Column("UserId");
I also need to specify the ID (or foreign key if you like) field name in the subclass mapping, since FNH is guessing that incorrectly too. How do I do that?
I haven't found a way to directly modify the mapping file itself, but I have found that overriding Fluent NHibernate's foreign key convention did the trick:
The new convention has to be registered as explained at the bottom of this page: http://wiki.fluentnhibernate.org/Conventions.