Question

NHibernate_reference.pdf, page 26:

Note that ILifecycle.OnUpdate() is not called every time the object's persistent state is updated. It is called only when a transient object is passed to ISession.Update().

Why it design link that?

Was it helpful?

Solution

ILifecycle is deprecated; as James L wrote, you should use an IInterceptor implementation instead. My interpretation of the documentation you quoted is that the OnUpdated event is fired from the Update method only. That is, the event was designed to notify subscribers that the Update method had been called and nothing more.

OTHER TIPS

You should use IInterceptor instead

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top