Is there a way to find saved items when using SaveOrUpdate method in nhibernate?

73 Views Asked by At

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.

2

There are 2 best solutions below

0
On BEST ANSWER

Have a look at NHibernate interceptors.

Implementing NHibernate Interceptors

Interceptors

0
On

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".