SqlCeTransaction.IsolationLevel Property

Specifies the IsolationLevel for this transaction.

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)

Syntax

'Declaration
Public Overrides ReadOnly Property IsolationLevel As IsolationLevel
    Get
'Usage
Dim instance As SqlCeTransaction
Dim value As IsolationLevel

value = instance.IsolationLevel
public override IsolationLevel IsolationLevel { get; }
public:
virtual property IsolationLevel IsolationLevel {
    IsolationLevel get () override;
}
abstract IsolationLevel : IsolationLevel
override IsolationLevel : IsolationLevel
override function get IsolationLevel () : IsolationLevel

Property Value

Type: System.Data.IsolationLevel
The IsolationLevel for this transaction. The .NET Compact Framework Data Provider for SQL Server Compact supports the ReadCommitted, Serializable, and ReadRepeatable isolation levels.

Implements

IDbTransaction.IsolationLevel

Remarks

Parallel transactions are not supported. The IsolationLevel applies to the entire transaction.

See Also

Reference

SqlCeTransaction Class

System.Data.SqlServerCe Namespace