I use NHibernate V 0.9 and I have a table with a trigger and I get the following error message when saving an object with NHibernate to that table:
Code:
NHibernate.HibernateException: SQL insert, update or delete failed (expected affected row count: 1, actual affected row count: 3). Possible causes: the row was modified or deleted by another user, or a trigger is reporting misleading row count.
I understand the errormessage, but I don't think that this error should appear, because the trigger should do its job. So does this mean I can't save an object to this table, or is there a possibility to tell NHibernate to ignore the rowcount?
Thanks, Rainer.