IDataAccessCoreCallActionStoredProcedureAsync Method |
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax Task<int> CallActionStoredProcedureAsync(
string storedProcedureToCall,
DbParameter[] parameters,
CancellationToken cancellationToken
)
Function CallActionStoredProcedureAsync (
storedProcedureToCall As String,
parameters As DbParameter(),
cancellationToken As CancellationToken
) As Task(Of Integer)
Parameters
- storedProcedureToCall
- Type: SystemString
Stored procedure to call - parameters
- Type: System.Data.CommonDbParameter
array of parameters to pass - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskInt32
the number of rows affected.
See Also