Hello,
I have a object Customer, this object has an ISet list of Contact.
When I delete a Customer I'd like to delete the Contact.
I use the mapping below, I tried all option in cascade but still have
this problem : The DELETE statement conflicted with the REFERENCE
constraint "FK4FF8F4B29499D0A4". The conflict occurred in database
"MyDB", table "dbo.Contact", column 'Customer'.
The mapping "Customer" :
<set name="Contacts" table="CustomerContact" cascade="save-update">
<key column="Customer" />
<many-to-many class="Contact" column="Contact" />
</set>
The mapping "Contact" :
<many-to-one name="Customer" column="Customer" not-null="true" />
Any idea ?
Thanks,
--
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en.