Browse by Tags
All Tags »
WTF »
NHibernate (
RSS)
Sorry, but there are no more tags available to filter with.
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...