Specifies the isolation level of a transaction.
| Member Name | Description |
|---|---|
| Serializable | Volatile data can be read but not modified, and no new data can be added during the transaction. |
| RepeatableRead | Volatile data can be read but not modified during the transaction. New data may be added during the transaction. |
| ReadCommitted | Volatile data cannot be read during the transaction, but can be modified. |
| ReadUncommitted | Volatile data can be read and modified during the transaction. |
| Unspecified | Volatile data can be read but not modified, and no new data can be added during the transaction. |
Namespace: IBatisNet.Common.Transaction
Assembly: IBatisNet.Common (in IBatisNet.Common.dll)
IBatisNet.Common.Transaction Namespace