DataAccessAdapterCoreFetchProjectionAsyncT Method (ListT, IRetrievalQuery, CancellationToken) |
Async variant of
FetchProjectionT(ListT, IRetrievalQuery)
Executes the passed in retrievalquery and projects the resultset onto instances of T (each row is materialized into an instance of T).
If a transaction is in progress, the command is wired to the transaction and executed inside the transaction. The projection results
will be stored in the specified destination set.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax protected Task FetchProjectionAsync<T>(
List<T> destination,
IRetrievalQuery queryToExecute,
CancellationToken cancellationToken
)
Protected Function FetchProjectionAsync(Of T) (
destination As List(Of T),
queryToExecute As IRetrievalQuery,
cancellationToken As CancellationToken
) As Task
Parameters
- destination
- Type: System.Collections.GenericListT
The destination to which instances of T will be added. - queryToExecute
- Type: SD.LLBLGen.Pro.ORMSupportClassesIRetrievalQuery
The query to execute. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Type Parameters
- T
Return Value
Type:
TaskSee Also