Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I use the NOLOCK function on Entity Framework? Is XML the only way to do this?

share|improve this question

4 Answers

up vote 71 down vote accepted

No, but you can start a transaction and set the isolation level to read uncommited. This essentially does the same as NOLOCK, but instead of doing it on a per table basis, it will do it for everything within the scope of the transaction.

If that sounds like what you want, here's how you could go about doing it...

//declare the transaction options
var transactionOptions = new System.Transactions.TransactionOptions();
//set it to read uncommited
transactionOptions.IsolationLevel = System.Transactions.IsolationLevel.ReadUncommitted;
//create the transaction scope, passing our options in
using (var transactionScope = new System.Transactions.TransactionScope(System.Transactions.TransactionScopeOption.Required, transactionOptions))
{
    //declare our context
    using (var context = new MyEntityConnection())
    {
        //any reads we do here will also read uncomitted data
        //...
        //...
    }
    //don't forget to complete the transaction scope
    transactionScope.Complete();
}
share|improve this answer
Wow... thanks... I pretty much given up on looking for another solution. – OneSmartGuy Sep 24 '09 at 21:48
No problem :-) I was in the same position as you, and stumbled across the solution. It's good to share these things because I didn't find the solution anywhere online. – Doctor Jones Sep 29 '09 at 10:43
Excellent @DoctaJonez Was anything new introduced in EF4 for this? – FMFF Feb 21 '12 at 22:03
@FMFF I don't know if anything new was introduced for EF4. I do know that the above code works with EFv1 and above though. – Doctor Jones Feb 28 '12 at 16:08

No, not really - Entity Framework is basically a fairly strict layer above your actual database. Your queries are formulated in ESQL - Entity SQL - which is first of all targeted towards your entity model, and since EF supports multiple database backends, you can't really send "native" SQL directly to your backend.

The NOLOCK query hint is a SQL Server specific thing and won't work on any of the other supported databases (unless they've also implemented the same hint - which I strongly doubt).

Marc

share|improve this answer

To get round this I create a view on the database and apply NOLOCK on the view's query. I then treat the view as a table within EF.

share|improve this answer

If you need something at large, the best way we found which less intrusive than actually starting a transactionscope each time, is to simply set the default transaction isolation level on your connection after you've created your object context by running this simple command:

this.context.ExecuteStoreCommand("SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;");

http://msdn.microsoft.com/en-us/library/aa259216(v=sql.80).aspx

With this technique, we were able to create a simple EF provider that creates the context for us and actually runs this command each time for all of our context so that we're always in "read uncommitted" by default.

share|improve this answer
Setting the transaction isolation level alone will not have any effect. You actually need to be running within a transaction for it to have any effect. The MSDN documentation for READ UNCOMMITTED states Transactions running at the READ UNCOMMITTED level do not issue shared locks. This implies that you must be running within a transaction to get the benefit. (taken from msdn.microsoft.com/en-gb/library/ms173763.aspx). Your approach may be less intrusive, but it won't achieve anything if you don't use a transaction. – Doctor Jones Apr 12 at 9:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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