Click or drag to resize

IDataAccessCoreCallRetrievalStoredProcedure Method (String, DbParameter, DataTable)

Calls the specified retrieval stored procedure in the database. Fills the specified datatable. 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.5.0.0 (5.5.18.1019)
Syntax
bool CallRetrievalStoredProcedure(
	string storedProcedureToCall,
	DbParameter[] parameters,
	DataTable tableToFill
)

Parameters

storedProcedureToCall
Type: SystemString
Stored procedure to call
parameters
Type: System.Data.CommonDbParameter
array of parameters to specify
tableToFill
Type: System.DataDataTable
Datatable to fill by the stored procedure

Return Value

Type: Boolean
true if succeeded, false otherwise
See Also