vote up 2 vote down star
1

Looking at all the possibilites of creation / update columns in NHibernate I mostly (Stackoverflow question, Ayende Rahien) see solutions with Listeners.

The programmer who was programming this in my company used an Interceptor to achieve the same thing.

Is there any difference between those two solutions ? (Is on of them obsolete, is one of them preferred and what are the advantages and / or disadvantes)

flag

1 Answer

vote up 1 vote down check

Interceptors are the the old way, event-listeners are newer and server the same purpose. So in a new project, event-listeners are recommended. You hook up to the new NHibernate event system.

link|flag
1  
That's not entirely true. Although event listeners are newer and recomended there are certain operations that you cannot do with them. Namely providing your way to instatiate objects and capturing transaction start/ends. – Rashack May 15 at 8:06
Thanks for this hint. I didn't know this. – Stefan Steinegger May 15 at 8:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.