DataAccessCoreImplCallRetrievalStoredProcedure Method (String, DbParameter, DataSet) | 
 
            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.SelfServicingSpecific
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.12.0.0 (5.12.0)
Syntaxpublic bool CallRetrievalStoredProcedure(
	string storedProcedureToCall,
	DbParameter[] parameters,
	DataSet dataSetToFill
)
Public Function CallRetrievalStoredProcedure ( 
	storedProcedureToCall As String,
	parameters As DbParameter(),
	dataSetToFill As DataSet
) As Boolean
Parameters
- storedProcedureToCall
 - Type: SystemString
Stored procedure to call - parameters
 - Type: System.Data.CommonDbParameter
array of parameters to specify - dataSetToFill
 - Type: System.DataDataSet
DataSet to fill by the stored procedure 
Return Value
Type: 
Booleantrue if succeeded, false otherwise
Implements
IDataAccessCoreCallRetrievalStoredProcedure(String, DbParameter, DataSet)
See Also