Suposse I have two classes:
class A {
Set<B> bs
}
class B {
}
This mapping is:
<set name="bs" table="bs_tab" cascade = "save-update">
<key column="a_id />
<many-to-many column="b_id" class="B"/>
</set>
And join the table as follows:
bs_tab(
a_id, b_id, primary key(a_id, b_id)
)
When I add some element to bs set and then call Session.saveOrUpdate (instance) sleep mode, it deletes all the rows in bs_tab, corresponding to the B instances that were in the set, before adding a new element.
How can i solve this?
source
share