I've got
class Parent
{
IList<Child> Children;
}
class Child
{
}
When deleting a Child
I need to remove all references to it from any Parents
that reference it.
How can I do this in NHibernate?
There is no Parent
FK
on Child
, the relationship is stored in a 3rd "link" table
Thanks