I'm using a UserType to maintain a column (Created) in my db.

When saving to db i simply check if the property in question equals DateTime.MinValue, and if so updates it to DateTime.Now (overriding NullSafeSet). This update however, is not immediately reflected by nhibernate, and if i load the object again without evicting it, the value of Created will still be DateTime.MinValue.

Are there any other ways, to get the value NHibernate returns to return the updated value, than using Session.Evict()?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can (and probably should) do it by hooking into the pre insert and pre update events instead of using IUserType. Check out this question for more info.

To do what you want to your entity, you could cast evt.Entity to the interface that supports your field (IHasLastModified in the example), and set the value.

link|improve this answer
Just what i needed :o) Thanks. – hhravn Mar 15 '10 at 11:32
feedback

Your Answer

 
or
required, but never shown

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