Class TransactionEventArgs
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
StoreSqlStoreTransactionDbTransactionStageTransactionStageExecTimeExecTimeRowIdobject
Properties
ExecTime
Gets the ExecTime
public ExecTime ExecTime { get; }
Property Value
RowId
Gets the Path (could be integer or string) of the current row.
public object RowId { get; }
Property Value
Stage
Gets the stage of the call (before or after a start, commit or rollback transaction)
public TransactionStage Stage { get; }
Property Value
Store
Gets the current Executor
public SqlStore Store { get; }
Property Value
Transaction
Gets the current transaction
public DbTransaction Transaction { get; }