views:

99

answers:

1

So I am looking for a nice list of NHibernate events that actually describes when they are fired, in a typical scenario (not just a list). IE something like

PreUpdateEventListener - Fires when an object that is already persistent is changing

I currently just rifle through the source and try to figure it out, but it's kinda painful, and I figure that someone must have done this already at some point.

+1  A: 

Found this one. This is a java site, but anyway NHibertane is a .net copy of Hibernate :)

isuruceanu
That site really only explains the 'basics' of events. I'm looking for something that describes when each of these events will be called in relation to your typical CRUD operations on an entity.
snicker