XPQueryExtensions.ToLookupAsync<T, TKey>(IQueryable<T>, Func<T, TKey>, CancellationToken) Method
Asynchronously enumerates a query and uses a key selector to construct a Lookup<TKey,TElement>.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Parameters
Name | Type | Description |
---|---|---|
query | IQueryable<T> | An XPQuery<T> to be enumerated. |
keySelector | Func<T, TKey> | A function that acquires each persistent object’s key. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
cancellationToken | CancellationToken | null | A CancellationToken object that delivers a cancellation notice to the running operation. |
Type Parameters
Name |
---|
T |
TKey |
Returns
Type | Description |
---|---|
Task<ILookup<TKey, T>> | A Task that returns a Lookup<TKey,TElement>. |
See Also