Skip to main content
.NET 6.0+

XPQueryExtensions.ToDictionaryAsync<T, TKey>(IQueryable<T>, Func<T, TKey>, CancellationToken) Method

Asynchronously enumerates a query and uses a key selector to construct a Dictionary<TKey,TValue>.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public static Task<Dictionary<TKey, T>> ToDictionaryAsync<T, TKey>(
    this IQueryable<T> query,
    Func<T, TKey> keySelector,
    CancellationToken cancellationToken = default(CancellationToken)
)

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<Dictionary<TKey, T>>

A Task that returns a Dictionary<TKey,TValue>.

See Also