Tortuga.Chain Namespace
Tortuga.Chain.CommandBuilders Namespace
Tortuga.Chain.Metadata Namespace

OperationImplementation<(Of <(<'TConnection, TTransaction>)>)> Delegate

The implementation of an operation from an OperationBuilder.

Namespace:  Tortuga.Chain.Core
Assembly:  Tortuga.Chain.Core (in Tortuga.Chain.Core.dll)

Syntax


public delegate Nullable<int> OperationImplementation<TConnection, TTransaction>(
	TConnection connection,
	Nullable<TTransaction> transaction
)
where TConnection : DbConnection
where TTransaction : DbTransaction
Public Delegate Function OperationImplementation(Of TConnection As DbConnection, TTransaction As DbTransaction) ( _
	connection As TConnection, _
	transaction As Nullable(Of TTransaction) _
) As Nullable(Of Integer)
generic<typename TConnection, typename TTransaction>
where TConnection : DbConnection
where TTransaction : DbTransaction
public delegate Nullable<int^> OperationImplementation(
	TConnection connection, 
	Nullable<TTransaction> transaction
)

Type Parameters

TConnection
The type of the connection.
TTransaction
The type of the transaction.

Parameters

connection
Type: TConnection
The connection.
transaction
Type: Nullable<(Of <(<'TTransaction>)>)>
The transaction.

Return Value

System.Nullable<System.Int32>.