I'm trying to create a mapping similar to the following with fluent nhibernate:
<class name="IAccountManager"
abstract="true"
table="IAccountManager">
<id name="Id">
<generator class="hilo"/>
</id>
<union-subclass
table="DefaultAccountManager"
name="DefaultAccountManager">
<property name="FirstName"/>
</union-subclass>
... more subclasses
</class>
Thoughts on how to do this?