Ramon Smits

Tell me your secrets and i'll tell you mine

Browse by Tags

All Tags » WTF » NHibernate (RSS)
Sorry, but there are no more tags available to filter with.
NHibernate bag did not delete records when IList.Clear() was called
I was having a problem where NHibernate did not automatically delete childs if a collection was emptied by calling IList.Clear() like in the following code example: var s = GetSession(); var parent = s.Get<Parent>(1); parent.Childs.Clear(); What...