XPQueryExtensions.ToArrayAsync<T>(IQueryable<T>, CancellationToken) Method
Asynchronously enumerates all objects in a query and saves them to an array.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v20.2.dll
Declaration
public static Task<T[]> ToArrayAsync<T>(
this IQueryable<T> query,
CancellationToken cancellationToken = default(CancellationToken)
)
<ExtensionAttribute>
Public Shared Function ToArrayAsync(Of T)(
query As IQueryable(Of T),
cancellationToken As CancellationToken = Nothing
) As Task(Of T())
Parameters
Name | Type | Description |
---|---|---|
query | IQueryable<T> | An XPQuery<T> to be enumerated. |
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 |
Returns
Type | Description |
---|---|
Task<T[]> | A Task that returns an array of objects. |
See Also
Feedback