Skip to main content
.NET 6.0+

XPQueryExtensions.AllAsync<T>(IQueryable<T>, Expression<Func<T, Boolean>>, CancellationToken) Method

Asynchronously checks whether all objects in a selection meet specific requirements.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public static Task<bool> AllAsync<T>(
    this IQueryable<T> query,
    Expression<Func<T, bool>> predicate,
    CancellationToken cancellationToken = default(CancellationToken)
)

Parameters

Name Type Description
query IQueryable<T>

An XPQuery<T> that specifies a selection of persistent objects.

predicate Expression<Func<T, Boolean>>

An expression which determines requirements persistent objects need to meet.

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<Boolean>

A Task that returns true if all objects in a selection meet specific requirements. Otherwise, it returns false.

See Also