Question

Is there a way to find saved items when using SaveOrUpdate method in hibernate. Basically, I need to know if an item is just updated or it is actualy inserted within one session.

Thansk.

Was it helpful?

Solution

Have a look at NHibernate interceptors.

Implementing NHibernate Interceptors

Interceptors

OTHER TIPS

When you are saving objects, as usual transient objects doesn't has an Id, and you can create a list with all processing objects which has an Id. Then you can iterate objects and find objects with new Id - they've been "saved".

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