vote up 5 vote down star
3

I've just discovered that if I get an object from an NHibernate session and change a property on object, NHibernate will automatically update the object on commit without me calling Session.Update(myObj)!

I can see how this could be helpful, but as default behaviour it seems crazy!

How can I stop this happening? Is this default NHib behaviour or something coming from Fluent NHibs AutoPersistenceModel?

If there's no way to stop this, what do I do? Unless I'm missing the point this behaviour seems to create a right mess, violating my UoW.

Im using NHibernate 2.0.1.4 and a Fluent NHib build from 18/3/2009

Edit, is this guy right with his answer?

Edit: I've also read that overriding an Event Listener could be a solution to this. However, IDirtyCheckEventListener.OnDirtyCheck isn't called in this situation. Does anyone know which listener I need to override?

Thanks

Andrew

flag

45% accept rate

3 Answers

vote up 2 vote down

You can set Session.FlushMode to FlushMode.Never. This will make your operations explicit

ie: on tx.Commit() or session.Flush(). Of course this will still update the database upon commit/flush. If you do not want this behavior, then call session.Evict(yourObj) and it will then become transient and NHibernate will not issue any db commands for it.

Response to your edit: Yes, that guy gives you more options on how to control it.

link|flag
yeah but it will still happen when I do flush. – Andrew Bullock Mar 23 at 14:55
ahh, then make the object transient by doing Session.Evict() – Ben Scheirman Mar 23 at 14:57
1  
because you can save an entire aggregate by calling save on the root entity. Saves can be cascaded to other objects. In addition, NH knows how to keep references from other objects in sync, so you don't save duplicates for example. – Ben Scheirman Mar 23 at 15:19
1  
oooook... I'm afraid im still not getting this 100%. I know what my cascade rules are, if im calling update then i should be aware of whats gonna happen, nh shouldn't try and save me from my own stupidity with strange features – Andrew Bullock Mar 23 at 15:25
1  
I think we need more details on what you're doing to give you a better answer. NH issues queries at the last possible moment, so it apparently needs it at the time when the query happens. otherwise it waits for tx.commit or session.flush. – Ben Scheirman Mar 24 at 16:13
show 1 more comment
vote up 1 vote down

Calling SaveOrUpdate() or Save() makes an object persistent. If you've retrieved it using an ISession or from a reference to a persistent object, then the object is persistent and flushing the session will save changes. You can prevent this behavior by calling Evict() on the object which makes it transient.

Edited to add: I generally consider an ISession to be a unit of work. This is easily implemented in a web app. using session-per-request but requires more control in WinForms.

link|flag
After I Evict, can I manually do an update on the object? Is this whole approach a good idea? Is there some way to make this default behaviour for all objects or do i have to evict each one? – Andrew Bullock Mar 23 at 15:09
After you Evict, the object is transient. To make it persistent again, you can call SaveOrUpdate on it. – Jamie Ide Mar 23 at 15:17
I think you're trying to fight the session as a unit of work. There is a way to re-attach, but you should probably just rely on tighter session lifecycles. In a web app, this would be per request, in a smart client it would be per-unit-of-work. – Ben Scheirman Mar 23 at 15:18
2  
Ok, thanks for your help, I cant help feeling like this is a hacky solution though. Cant i just set NHibernate.DoThingsWithoutMeAsking = false; somewhere? – Andrew Bullock Mar 23 at 15:19
Im in a webapp and have a UoW setup to commit on End_Request. My specific case is where i update an object from an edit screen, then validate it. If it fails validation i throw it back with errors, if it passes then i call save. Thing is its still saved on a failed validation because of this issue! – Andrew Bullock Mar 23 at 15:26
show 3 more comments
vote up 1 vote down

A first solution (hack to be honest), is availaible here (http://code.google.com/p/unhaddins/source/browse/#svn/trunk/uNhAddIns/uNhAddIns/Listeners/AutoDirtyCheck) but it is incomplete.

link|flag
Discussion on nhibernate google group here groups.google.com/group/nhusers/… – Nelson Aug 13 at 6:59
also fabiomaulo.blogspot.com/2009/03/… – Mauricio Scheffer Nov 4 at 18:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.