When doing the following query...

var criteria = CurrentSession.CreateCriteria(typeof(Transaction));

criteria.Add(Restrictions.In("Id", new List<int>(transactionIds)));

return criteria.List<Transaction>();

I get the following error "NHibernate.Exceptions.GenericADOException:
could not update: "

NHProfiler shows that after loading everything it NHibernate then
tries to update a non-nullable field to null.  This to me says I've
got a problem with my mapping which I'm looking for now but I'm
wondering why would there even be an update occurring after a query?

Thanks,

Shane
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to