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