| IDaoCallActionStoredProcedure Method  | 
 
            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.1.0.0 (5.1.0)
Syntaxint CallActionStoredProcedure(
	string storedProcedureToCall,
	DbParameter[] parameters,
	ITransaction transaction
)
Function CallActionStoredProcedure ( 
	storedProcedureToCall As String,
	parameters As DbParameter(),
	transaction As ITransaction
) As Integer
Parameters
- storedProcedureToCall
 - Type: SystemString
Stored procedure to call - parameters
 - Type: System.Data.CommonDbParameter
array of parameters to pass - transaction
 - Type: SD.LLBLGen.Pro.ORMSupportClassesITransaction
The transaction. 
Return Value
Type: 
Int32the number of rows affected.
See Also