Is there any chance that collections will be supported in <join ... />?
For instance, when mixing "table-per-class-hierarchy" with "table-per-subclass" inheritance mapping strategies, I need lists in <join ... />:
Code:
<subclass name="ApplyType" extends="ExpressionType" lazy="false" >
<join table="ApplyType">
<key>
<column name="Hjid"/>
</key>
<property name="FunctionId" type="org.hibernate.type.StringType"/>
<list cascade="all-delete-orphan" name="Expression" table="ApplyType_Expression">
<key>
<column name="ApplyType_Expression_Hjid"/>
</key>
<index>
<column name="Hjindex"/>
</index>
<one-to-many class="ExpressionType"/>
</list>
</join>
</subclass>
This does not work currently.
Any hints with that?
Thank you for your time.