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?