Hibernate version: 3
I didn't find in the documentation how to create two components sharing the same column. I get a
repeated column error. And when I map with insert="false", update="false" (in the component or properties) I get an
insert="false", update="false" not supported for properties of components.
For example :
Code:
<component name="C1">
<property .../>
<component name="CC2">
<property name="A" column="AA"/>
<property name="B" column="BB"/>
</component>
<component name="CC3">
<property name="C" column="CC"/>
<property name="B" column="BB"/>
</component>
</component>
I cannot use twice the column BB.
Thx.