Click or drag to resize
DaoBase.CallActionStoredProcedure 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.0.0.0 (5.0.0)
Syntax
public int CallActionStoredProcedure(
	string storedProcedureToCall,
	DbParameter[] parameters,
	ITransaction transaction
)

Parameters

storedProcedureToCall
Type: System.String
Stored procedure to call
parameters
Type:System.Data.Common.DbParameter[]
array of parameters to pass
transaction
Type: SD.LLBLGen.Pro.ORMSupportClasses.ITransaction
The transaction.

Return Value

Type: Int32
the number of rows affected.

Implements

IDao.CallActionStoredProcedure(String,DbParameter[], ITransaction)
See Also