1

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.

Meisam Emamjome
  • 508
  • 5
  • 15

2 Answers2

0

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

Anton
  • 1,583
  • 12
  • 17
0

Have a look at NHibernate interceptors.

Implementing NHibernate Interceptors

Interceptors

Nick Ryan
  • 2,662
  • 1
  • 17
  • 24