IDataAccessAdapterExecuteMultiRowDataTableRetrievalQuery Method (IRetrievalQuery, DbDataAdapter, IFieldPersistenceInfo) | 
 
            Executes the passed in retrieval query and returns the results as a datatable using the passed in data-adapter. 
            It sets the connection object of the command object of query object passed in to the connection object of this class.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
SyntaxDataTable ExecuteMultiRowDataTableRetrievalQuery(
	IRetrievalQuery queryToExecute,
	DbDataAdapter dataAdapterToUse,
	IFieldPersistenceInfo[] fieldsPersistenceInfo
)
Function ExecuteMultiRowDataTableRetrievalQuery ( 
	queryToExecute As IRetrievalQuery,
	dataAdapterToUse As DbDataAdapter,
	fieldsPersistenceInfo As IFieldPersistenceInfo()
) As DataTable
Parameters
- queryToExecute
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIRetrievalQuery
Retrieval query to execute - dataAdapterToUse
 - Type: System.Data.CommonDbDataAdapter
The dataadapter to use to fill the datatable. - fieldsPersistenceInfo
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIFieldPersistenceInfo
Fields persistence info objects for the fields used for the query. Required for type conversion on values. 
Return Value
Type: 
DataTableDataTable with the rows requested
See Also