Click or drag to resize

IDataAccessCore.CallActionStoredProcedureAsync Method

Async variant of CallActionStoredProcedure(String,DbParameter[]) Calls the specified action stored procedure in the database. If a transaction is in progress, it will participate in that transaction.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntax
Task<int> CallActionStoredProcedureAsync(
	string storedProcedureToCall,
	DbParameter[] parameters,
	CancellationToken cancellationToken
)

Parameters

storedProcedureToCall
Type: System.String
Stored procedure to call
parameters
Type:System.Data.Common.DbParameter[]
array of parameters to pass
cancellationToken
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<Int32>
the number of rows affected.
See Also