dotConnect for SQL Server Documentation
Devart.Data.SqlServer Namespace / SqlTransaction Class / IsolationLevel Property

In This Topic
    IsolationLevel Property (SqlTransaction)
    In This Topic
    Specifies the System.Data.IsolationLevel for this transaction.
    Syntax
    'Declaration
     
    Public Overrides ReadOnly Property IsolationLevel As IsolationLevel
    public override IsolationLevel IsolationLevel {get;}

    Property Value

    The System.Data.IsolationLevel for this transaction. The default value is IsolationLevel.ReadCommitted.
    Remarks
    The System.Data.IsolationLevel applies to the entire transaction.

    The following isolation levels are supported by dotConnect for SQL Server:

    • ReadCommitted
    • Serializable
    • ReadUncommitted
    • RepeatableRead

    See Also