Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
3.0.2:
[b<class name="Person" >
....
<set name="person-books" table="tableName" lazy="true" cascade="none" >
<key on-delete="noaction" update="false" >
<column name="FK1"/>
<column name="FK2"/>
</key>
<many-to-many class="book">
<column name="FKey"/>
</many-to-many>
</set>
</class>[/b]
delete(person);
I want to disable delete on the many-to-many relation, so I add on-delete="noaction" but it doesn't work it throw delete statment