How can I use the NOLOCK function on Entity Framework? Is XML the only way to do this?
|
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...
|
|||||||||
|
|
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 |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|