DaoBaseExecuteMultiRowDataTableRetrievalQuery Method (IRetrievalQuery, DbDataAdapter, DataTable, IEntityFields) | 
 
            Executes the passed in retrieval query and returns the results in thedatatable specified using the passed in data-adapter. 
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxpublic virtual bool ExecuteMultiRowDataTableRetrievalQuery(
	IRetrievalQuery queryToExecute,
	DbDataAdapter dataAdapterToUse,
	DataTable tableToFill,
	IEntityFields fieldsToReturn
)
Public Overridable Function ExecuteMultiRowDataTableRetrievalQuery ( 
	queryToExecute As IRetrievalQuery,
	dataAdapterToUse As DbDataAdapter,
	tableToFill As DataTable,
	fieldsToReturn As IEntityFields
) As Boolean
Parameters
- queryToExecute
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIRetrievalQuery
Retrieval query to execute - dataAdapterToUse
 - Type: System.Data.CommonDbDataAdapter
The dataadapter to use to fill the datatable. - tableToFill
 - Type: System.DataDataTable
DataTable to fill - fieldsToReturn
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFields
Fields persistence info objects for the fields used for the query. Required for type conversion on values. 
Return Value
Type: 
Booleantrue if succeeded, false otherwise
See Also