0

Like in the question is any method to change default isolation level in ef / on ms sql server? I have on mind change for "all time" not only for a current transaction

  • possible duplicate of [Entity Framework and transaction isolation level](http://stackoverflow.com/questions/12795184/entity-framework-and-transaction-isolation-level) – Erik Philips Jan 16 '15 at 20:51

1 Answers1

0

If you have access to make such changes in the database, sure.

 SET TRANSACTION ISOLATION LEVEL <whatever>

More info on MSDN

Arun
  • 941
  • 6
  • 13