Hi,
Let's suppose my application is an order with Items, then i would like to open an order, delete an item and save again.
Now for changelog purposes i would like to be able to see that removed item.
what my thought was at first, is that the deleted item should pass through the Custom delete event added to the sessionfactory. That doesn't seem to work...
should it work? It's not doing that over here :)
Code:
cfg.EventListeners.DeleteEventListeners = new IDeleteEventListener[] { new CustomDeleteEventListener() };
my guess would be seeing the Item go through the OnDelete Method...