NHibernate will not insert a record

Posted by Brian Beckham on Stack Overflow See other posts from Stack Overflow or by Brian Beckham
Published on 2010-06-03T18:34:30Z Indexed on 2010/06/03 18:44 UTC
Read the original article Hit count: 211

Filed under:
|
|

I have an application that is now 4+ years old that is exhibiting some odd behavior on our latest deployment. The application uses nHibernate for all inserts / updates / selects, etc. We are currently using .NET 2.0, and nHibernate 1.2 (I know, we need to upgrade)

This deployment is on Windows 2008 Server x64, IIS 7.5 - what I have seen so far is that the application runs, but is unable to insert or update records in the DB - reads seem fine so far, but writes are a problem. SOME writes actually work, inserts into some small tables, but most never even make it to the DB.

Using SQL Profiler, the insert / updates never make it to the server, and turning log4net up to DEBUG, and show_sql true - the select statements appear, but the insert / update statements never make it into the log at all, and never show up at the server.

What's even more odd is that the application seems to be oblivious to this - the commandandclose runs without exception (open session in view with an httpmodule), the domain objects come back with uuid's generated, etc. but never get persisted.

Certainly an upgrade is due, but I would hate to try it during a deployment, and without time to accurately test the app. Any ideas?

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about nhibernate