Click or drag to resize
IDao.CallRetrievalStoredProcedure Method (String,DbParameter[], DataSet, ITransaction)
Calls the specified retrieval stored procedure in the database. Fills the specified DataSet. Will participate in the transaction if a transaction is in progress.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax
bool CallRetrievalStoredProcedure(
	string storedProcedureToCall,
	DbParameter[] parameters,
	DataSet dataSetToFill,
	ITransaction transaction
)

Parameters

storedProcedureToCall
Type: System.String
Stored procedure to call
parameters
Type:System.Data.Common.DbParameter[]
array of parameters to specify
dataSetToFill
Type: System.Data.DataSet
DataSet to fill by the stored procedure
transaction
Type: SD.LLBLGen.Pro.ORMSupportClasses.ITransaction
The transaction.

Return Value

Type: Boolean
true if succeeded, false otherwise
See Also