vote up 3 vote down star

How do you support optimistic / pessimistic concurrency using NHibernate?

flag

57% accept rate

3 Answers

vote up 2 vote down check

NHibernate, by default, supports optimistic concurrency. Pessimistic concurrency, on the other hand, can be accomplished through the ISession.Lock() method.

These issues are discussed in detail in Chapter 10: Transactions and Concurrency of the Hibernate Docs.

link|flag
Thanks Jon for the quick reply :-) – Kevin Pang Sep 23 '08 at 1:05
vote up 8 vote down

NHibernate supports 2 types of optimistic concurrency.

You can either have it check dirty fields by using "optimistic-lock=dirty" attribute on the "class" element in your mapping files or you can use "optimistic-lock=version" (which is also the default). If you are using version you need to provide a "version" element in your mapping file that maps to a field in your database.

Version can be of type Int64, Int32, Int16, Ticks, Timestamp, or TimeSpan and are automatically incremented on save. See Chapter 5 in the NHibernate documentation for more info.

link|flag
vote up 1 vote down

You can also 'just' manually compare the version numbers (assuming you've added a Version property to your entity).

Clearly Optimistic is the only sane option. Sometimes of course, we have to deal with crazy scenarios however...

link|flag

Your Answer

Get an OpenID
or

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