1#if !NETFX_CORE && !(ANDROID || IOS)
TransactionIsolationLevel
Specifies an isolation level for transactions controlled by TransactionalAttribute
@ ReadUncommitted
Shared locks are issued and no exclusive locks are honored.
@ RepeatableRead
Locks are placed on all data that is used in a query, preventing other users from updating the data.
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Unspecified
Shows that different isolation level than the one specified is being used, but the level cannot be de...
@ ReadCommitted
Shared locks are held while the data is being read to avoid reading modified data,...