Click or drag to resize
DaoBaseExecuteMultiRowDataTableRetrievalQuery Method (IRetrievalQuery, DbDataAdapter, IEntityFields)
Executes the passed in retrieval query and returns the results as a datatable using the passed in data-adapter.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public DataTable ExecuteMultiRowDataTableRetrievalQuery(
	IRetrievalQuery queryToExecute,
	DbDataAdapter dataAdapterToUse,
	IEntityFields fieldsToReturn
)

Parameters

queryToExecute
Type: SD.LLBLGen.Pro.ORMSupportClassesIRetrievalQuery
Retrieval query to execute
dataAdapterToUse
Type: System.Data.CommonDbDataAdapter
The dataadapter to use to fill the datatable.
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: DataTable
DataTable with the rows requested
See Also