Skip to main content
A newer version of this page is available. .

XPQueryExtensions.AverageAsync(IQueryable<Single>, CancellationToken) Method

Asynchronously calculates an average of objects’ specific Single fields for a query.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v18.2.dll

Declaration

public static Task<float> AverageAsync(
    this IQueryable<float> query,
    CancellationToken cancellationToken = default(CancellationToken)
)

Parameters

Name Type Description
query IQueryable<Single>

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.

Returns

Type Description
Task<Single>

A Task that returns an average of objects’ specific Single fields for a query.

See Also