I would like to refresh an entity and all its child collections. What is the best way to do this? I\'m talking about nhibernate:)
I\'ve read about session.Evict, ses
Refresh after Evict probably won't work.
Theoretically, Refresh alone should be enough. However, it has known issues when elements of child collections have been deleted.
Refresh
Evict followed by Get usually gets things done.
Evict
Get