Skip to main content
.NET 8.0+

XPQueryExtensions.MaxAsync<T>(IQueryable<T>, CancellationToken) Method

Asynchronously gets the maximum value from a specified query.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v24.2.dll

NuGet Package: DevExpress.Xpo

#Declaration

public static Task<T> MaxAsync<T>(
    this IQueryable<T> query,
    CancellationToken cancellationToken = default(CancellationToken)
)

#Parameters

Name Type Description
query IQueryable<T>

An XPQuery<T> that specifies a persistent object selection.

#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 a object. This object is the maximum value.

See Also