C# Class Tortuga.Chain.Core.ExecutionToken

This class represents the actual preparation and execution of a command.
Mostrar archivo Open project: docevaad/Chain Class Usage Examples

Protected Methods

Method Description
ExecutionToken ( IDataSource dataSource, string operationName, string commandText, CommandType commandType ) : System

Initializes a new instance of the ExecutionToken class.

Private Methods

Method Description
RaiseCommandBuild ( DbCommand command ) : void
RaiseCommandExecuted ( DbCommand command, int rowsAffected ) : void

Method Details

ExecutionToken() protected method

Initializes a new instance of the ExecutionToken class.
protected ExecutionToken ( IDataSource dataSource, string operationName, string commandText, CommandType commandType ) : System
dataSource IDataSource The data source.
operationName string Name of the operation.
commandText string The command text.
commandType CommandType Type of the command.
return System