Click or drag to resize
IDataAccessAdapter.ExecuteMultiRowDataTableRetrievalQuery Method (IRetrievalQuery, DbDataAdapter, DataTable,IFieldPersistenceInfo[])
Executes the passed in retrieval query and returns the results in thedatatable specified 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.0.0.0 (5.0.0)
Syntax
bool ExecuteMultiRowDataTableRetrievalQuery(
	IRetrievalQuery queryToExecute,
	DbDataAdapter dataAdapterToUse,
	DataTable tableToFill,
	IFieldPersistenceInfo[] fieldsPersistenceInfo
)

Parameters

queryToExecute
Type: SD.LLBLGen.Pro.ORMSupportClasses.IRetrievalQuery
Retrieval query to execute
dataAdapterToUse
Type: System.Data.Common.DbDataAdapter
The dataadapter to use to fill the datatable.
tableToFill
Type: System.Data.DataTable
DataTable to fill
fieldsPersistenceInfo
Type:SD.LLBLGen.Pro.ORMSupportClasses.IFieldPersistenceInfo[]
Fields persistence info objects for the fields used for the query. Required for type conversion on values.

Return Value

Type: Boolean
true if succeeded, false otherwise
See Also