DataAccessCoreImplCallActionStoredProcedureAsync Method  | 
  
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses.SelfServicingSpecific
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.12.0.0 (5.12.0)
Syntaxpublic Task<int> CallActionStoredProcedureAsync(
	string storedProcedureToCall,
	DbParameter[] parameters,
	CancellationToken cancellationToken
)
Public 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.
            
Implements
IDataAccessCoreCallActionStoredProcedureAsync(String, DbParameter, CancellationToken)
See Also