I have following nhibernate mapping , I want to save composite key values into separate column in other entity TimesheetCellTransactionLine with one to one mapping. any ideas ? following doesnt save the values passes null in both foreign key column.
<hibernate-mapping
xmlns="urn:nhibernate-mapping-2.2"
assembly="ManpowerUK.Indigo.Domain"
namespace="ManpowerUK.Indigo.Domain.Timesheets">
<class name="CMSTimesheetCell" lazy="false" table="vw_TimesheetCell" mutable="false">
<composite-id >
<key-property name="TimesheetCellId"/>
<key-property name="TimesheetCellVersion" column="Version"/>
</composite-id>
<property name="TimesheetId" not-null="true" />
<property name="IsRemoved" />
</class>
</hibernate-mapping>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="ManpowerUK.Indigo.Domain" namespace="ManpowerUK.Indigo.Domain">
<class name="TimesheetCellTransactionLine" lazy="false">
<id column="TransactionLineId"/>
<many-to-one name="Timesheet" class="ManpowerUK.Indigo.Domain.Timesheets.TimesheetCellWrite" column="TimesheetId" not-null="true" lazy="proxy"/>
<many-to-one name="CMSTimesheetCell" class="ManpowerUK.Indigo.Domain.Timesheets.CMSTimesheetCell" not-null="true" lazy="proxy" cascade="none">
<column name="TimesheetCellId"/>
<column name="TimesheetCellVersion"/>
</many-to-one>
</class>
</hibernate-mapping>
TimesheetCellTransactionLine
appears to be extracted from a bigger mapping, and the snippet you provide looks invalid and untested (subclass
outside of a class definition). Can you write a mcve please? – Frédéric