DaoBaseCallRetrievalStoredProcedure Method (String, DbParameter, DataTable, ITransaction) | 
 
            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.4.0.0 (5.4.0)
Syntaxpublic bool CallRetrievalStoredProcedure(
	string storedProcedureToCall,
	DbParameter[] parameters,
	DataTable tableToFill,
	ITransaction transaction
)
Public Function CallRetrievalStoredProcedure ( 
	storedProcedureToCall As String,
	parameters As DbParameter(),
	tableToFill As DataTable,
	transaction As ITransaction
) As Boolean
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 - transaction
 - Type: SD.LLBLGen.Pro.ORMSupportClassesITransaction
The transaction. 
Return Value
Type: 
Booleantrue if succeeded, false otherwise
Implements
IDaoCallRetrievalStoredProcedure(String, DbParameter, DataTable, ITransaction)
See Also