DaoBaseGetAsProjectionAsyncT Method (IRetrievalQuery) |
Async variant of
GetAsProjectionT(IRetrievalQuery)
Executes the passed in retrievalquery and projects the resultset onto instances of T (each row is materialized into an instance of T).
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.12.0.0 (5.12.0)
Syntaxpublic Task<List<T>> GetAsProjectionAsync<T>(
IRetrievalQuery queryToExecute
)
Public Function GetAsProjectionAsync(Of T) (
queryToExecute As IRetrievalQuery
) As Task(Of List(Of T))
Parameters
- queryToExecute
- Type: SD.LLBLGen.Pro.ORMSupportClassesIRetrievalQuery
The query to execute.
Type Parameters
- T
Return Value
Type:
TaskListT
List of instances of T, one for each row in the resultset of queryToExecute
Implements
IDaoGetAsProjectionAsyncT(IRetrievalQuery)
See Also