LinqConnect Documentation
Devart.Data.Linq Namespace / DataContext Class / Transaction Property

In This Topic
    Transaction Property
    In This Topic
    Sets a local transaction for the .NET Framework to use to access the database.
    Syntax
    'Declaration
     
    Public Property Transaction As DbTransaction
    public DbTransaction Transaction {get; set;}
    Remarks
    The primary scenario for this property is interoperability with relational ADO.NET code. For example, use this property when you write your own Create/Update/Delete methods to set the Transaction property on the ADO Command object.

    Note the following:

    • If this property has not been explicitly set, the getter returns null.
    • If the code is executing in a Transaction context, setting this property throws an exception.
    • If this property is set and a new Transaction is opened, an exception is thrown when a query or update is executed.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also