79452736

Date: 2025-02-19 20:50:41
Score: 5
Natty: 4
Report link

I'm facing an issue with bulk editing in my .NET application using NHibernate. When I update field X after starting the application, it works fine. However, when I try to update another field using bulk edit, NHibernate generates the same UPDATE query as before, but assigns the new value to X instead of updating the intended field.

I'm using an Update function that accepts a lambda expression. The function starts by opening a stateless session and closes it after the update. My NHibernate configuration has both first-level and second-level caching disabled.

I've tried the following, but the issue persists:

Using transactions

Opening a session and calling Clear() before updating

Ensuring caching is disabled

Despite these attempts, NHibernate always generates an UPDATE query targeting X, causing incorrect values to be stored in the database.

How can I resolve this issue?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1.5): How can I resolve this issue?
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Hazem Abbassi