5 writes to _isolationLevel
System.Data (5)
fx\src\data\System\Data\SqlClient\SqlDelegatedTransaction.cs (5)
59case SysTx.IsolationLevel.ReadCommitted: _isolationLevel = IsolationLevel.ReadCommitted; break; 60case SysTx.IsolationLevel.ReadUncommitted: _isolationLevel = IsolationLevel.ReadUncommitted; break; 61case SysTx.IsolationLevel.RepeatableRead: _isolationLevel = IsolationLevel.RepeatableRead; break; 62case SysTx.IsolationLevel.Serializable: _isolationLevel = IsolationLevel.Serializable; break; 63case SysTx.IsolationLevel.Snapshot: _isolationLevel = IsolationLevel.Snapshot; break;
1 reference to _isolationLevel
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDelegatedTransaction.cs (1)
100connection.ExecuteTransaction(SqlInternalConnection.TransactionRequest.Begin, null, _isolationLevel, _internalTransaction, true);