Table of Contents

Class TransactionEventArgs

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

Used with transaction event

public class TransactionEventArgs : EventArgs
Inheritance
TransactionEventArgs
Inherited Members
Extension Methods

Constructors

TransactionEventArgs(SqlStore, DbTransaction, TransactionStage, ExecTime, object)

Constructor.

public TransactionEventArgs(SqlStore Store, DbTransaction Transaction, TransactionStage Stage, ExecTime ExecTime, object RowId)

Parameters

Store SqlStore
Transaction DbTransaction
Stage TransactionStage
ExecTime ExecTime
RowId object

Properties

ExecTime

Gets the ExecTime

public ExecTime ExecTime { get; }

Property Value

ExecTime

RowId

Gets the Path (could be integer or string) of the current row.

public object RowId { get; }

Property Value

object

Stage

Gets the stage of the call (before or after a start, commit or rollback transaction)

public TransactionStage Stage { get; }

Property Value

TransactionStage

Store

Gets the current Executor

public SqlStore Store { get; }

Property Value

SqlStore

Transaction

Gets the current transaction

public DbTransaction Transaction { get; }

Property Value

DbTransaction