Hi.
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()?