views:

123

answers:

1

What is the current method of implementing the joined-subclass structure with FluentNHibernate? By "current", I mean by not using deprecated methods such as JoinedSubClass or AddPart.

Thanks!

+1  A: 

The recommended way to map a joined-subclass is to inherit from SubclassMap much in the same way you inherit from ClassMap for your non-subclass entities.

It's described in the fluent mapping subclasses section on the wiki.

James Gregory
It worked! Thanks!
James Jones