I am using NHibernate 2.0.1 and IPreUpdateEventListener,IPreInsertEventListener events for audit logging purposes.
I have a basic entity that has a one to many relation like this.
User------->Books
From an ASP.NET MVC controller method i am adding a book to a user like this.
Book book =new Book("LOTR");
var userBook=user.AddBook(book);
After session flushing OnPreInsert event called once for newly created Book object than OnPreUpdate called for all books objects in user's books collection even they have not changed.So I am updating LastMofiedDate property of all books objects and I dont want to do this. Is this supposed behaviour of NHibernate or am I missing something?