Entity Framework and transaction isolation level
By default, a Transaction has an IsolationLevel of Serializable. Serializable is the highest level. It requires that the transaction completes before any other transaction is allowed to operate on the data. It has the following restrictions: Statements cannot read data that has been modified but not yet committed by other transactions. No other transactions can … Read more