AdapterExtensionMethods.FetchQueryAsync Method |
Name | Description | |
---|---|---|
FetchQueryAsync(IDataAccessAdapter, DynamicQuery) |
Async variant of FetchQuery(IDataAccessAdapter, DynamicQuery).
Fetches the query specified and returns the results in plain object arrays, one object array per returned row of the query specified.
| |
FetchQueryAsync<TElement>(IDataAccessAdapter, DynamicQuery<TElement>) |
Async variant of FetchQuery<TElement>(IDataAccessAdapter, DynamicQuery<TElement>).
Fetches the query specified and returns the results in a list of TElement objects, which are created using the projectorFunc of the query specified.
| |
FetchQueryAsync<TEntity>(IDataAccessAdapter, EntityQuery<TEntity>) |
Async variant of FetchQuery<TEntity>(IDataAccessAdapter, EntityQuery<TEntity>).
Fetches the query specified on the adapter specified. Uses the TEntity type to produce an EntityCollection(Of TEntity) for the results to return
| |
FetchQueryAsync(IDataAccessAdapter, DynamicQuery, CancellationToken) |
Async variant of FetchQuery(IDataAccessAdapter, DynamicQuery).
Fetches the query specified and returns the results in plain object arrays, one object array per returned row of the query specified.
| |
FetchQueryAsync<TElement>(IDataAccessAdapter, DynamicQuery<TElement>, CancellationToken) |
Async variant of FetchQuery<TElement>(IDataAccessAdapter, DynamicQuery<TElement>).
Fetches the query specified and returns the results in a list of TElement objects, which are created using the projectorFunc of the query specified.
| |
FetchQueryAsync<TEntity>(IDataAccessAdapter, EntityQuery<TEntity>, CancellationToken) |
Async variant of FetchQuery<TEntity>(IDataAccessAdapter, EntityQuery<TEntity>).
Fetches the query specified on the adapter specified. Uses the TEntity type to produce an EntityCollection(Of TEntity) for the results to return
| |
FetchQueryAsync<TEntity, TCollection>(IDataAccessAdapter, EntityQuery<TEntity>, TCollection) |
Async variant of FetchQuery<TEntity, TCollection>(IDataAccessAdapter, EntityQuery<TEntity>, TCollection).
Fetches the query specified on the adapter specified into the collectionToFill specified.
| |
FetchQueryAsync<TEntity, TCollection>(IDataAccessAdapter, EntityQuery<TEntity>, TCollection, CancellationToken) |
Async variant of FetchQuery<TEntity, TCollection>(IDataAccessAdapter, EntityQuery<TEntity>, TCollection).
Fetches the query specified on the adapter specified into the collectionToFill specified.
|