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

CommandImplementationAsync<(Of <(<'TCommand>)>)> Delegate

The implementation of an operation from a CommandBuilder.

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

Syntax


public delegate Task<Nullable<int>> CommandImplementationAsync<TCommand>(
	TCommand command
)
where TCommand : DbCommand
Public Delegate Function CommandImplementationAsync(Of TCommand As DbCommand) ( _
	command As TCommand _
) As Task(Of Nullable(Of Integer))
generic<typename TCommand>
where TCommand : DbCommand
public delegate Task<Nullable<int^>>^ CommandImplementationAsync(
	TCommand command
)

Type Parameters

TCommand
The type of the t command.

Parameters

command
Type: TCommand
The command.

Return Value

Task<System.Nullable<System.Int32>>.