I need to be able to do

select * from myTable with (xlock,holdlock)

from Entity Framework. Is this possible? I've opened a TransactionScope with the Serializable isolation level but my selects are not locking the tables. I'd like them to lock until I complete the transaction scope.

link|improve this question
Have you ever solved this without using plain SQL as proposed in the answer by Tom Peplow? I have the same problem, and I really do not understand why the IsolationLevel.Serializable does not lock the tables. I mean, by the definition of the 'Serializable' option, a SELECT query should lock the table for the whole transaction, shouldn't it? – cheeesus Oct 4 '11 at 14:52
feedback

1 Answer

It is possible but you have to issue the SQL you can't add the locking hint when using LINQ (as far as I know):

ObjectContext.ExecuteStoreCommand(
                string.Format("select 1 from [{0}] with (tablockx, holdlock) where 0 = 1",
                              tableName));

If you do that in a transaction scope then you'll hold the lock until you complete the transaction.

A bit more information can be found here:

http://peplowdown.wordpress.com/2010/07/18/locking-across-servers-table-locks-with-entity-framework/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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