IDataAccessCoreCallActionStoredProcedureAsync Method  | 
  
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
SyntaxTask<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