vote up 3 vote down star
2

In NHibernate, I want to retrieve an instance, and put an exclusive lock on the record that represents the retrieved entity on the database.

Right now, I have this code:

With.Transaction (session, IsolationLevel.Serializable, delegate
{
    ICriteria crit = session.CreateCriteria (typeof (TarificationProfile));

    crit.SetLockMode (LockMode.Upgrade);

    crit.Add (Expression.Eq ("Id", tarificationProfileId));

    TarificationProfile profile = crit.UniqueResult<TarificationProfile> ();

    nextNumber = profile.AttestCounter;

    profile.AttestCounter++;

    session.SaveOrUpdate (profile);
});

As you can see, I set the LockMode for this Criteria to 'Upgrade'. This issues an SQL statement for SQL Server which uses the updlock and rowlock locking hints:

SELECT ... FROM MyTable with (updlock, rowlock)

However, I want to be able to use a real exclusive lock. That is, prevent that others can read this very same record, until I have released the lock. In other words, I want to be able to use an xlock locking hint, instead of an updlock.

I don't know how (or even if) I can achieve that .... Maybe somebody can give me some hints about this :)

If it is really necessary, I can use the SQLQuery functionality of NHibernate, and write my own SQL Query, but, I'd like to avoid that as much as possible.

flag

67% accept rate
Why do you want to achieve a exclusive lock? There are probably other solutions. – Stefan Steinegger Apr 22 at 8:38
Why ? Because it is necessary ... My entity contains a counter that should be used, and I must absolutely be sure that this counter is used correctly... – Frederik Gheysels Apr 22 at 8:58
Shouldn't you lock when reading? – Stefan Steinegger Apr 22 at 9:09
Yes, I'd like to lock when reading, but this is what i can't do, or at least, NHibernate can't do it. I want NHibernate to issue a select .. FROM table with (xlock) statement, but it doesn't do that. – Frederik Gheysels Apr 22 at 9:17

2 Answers

vote up -1 vote down

Were you able to successfully place an exclusive lock on the row. I have a requirement that is very similar to what you are trying to achieve. Let me know how u went about solving the issue .

Thanks jay

link|flag
vote up -1 vote down

You could use isolation level "repeatable read" if you want to make sure that values you read from the database don't change during the transaction. But you have to do this in all critical transactions. Or you lock it in the critical reading transaction with an upgrade lock.

link|flag
thx for your response, can you elaborate a bit more on that ? I use one transaction, in where i read the entity (right now with an updlock), and I save the updated entity in the same transaction. – Frederik Gheysels Apr 22 at 9:18
So the entity can't change during this transaction. Other transactions can read the value, and they can see your changes during their transaction. If they don't like this, they have to make their own lock. Or use "repeatable read". – Stefan Steinegger Apr 22 at 9:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.