Skip to main content
.NET 6.0+

SerializableObjectLayerClient.LoadObjectsAsync(Session, ObjectsQuery[], CancellationToken) Method

Loads persistent objects asynchronously, according to specified query parameters.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public Task<ICollection[]> LoadObjectsAsync(
    Session session,
    ObjectsQuery[] queries,
    CancellationToken cancellationToken = default(CancellationToken)
)

Parameters

Name Type Description
session Session

A Session that is used to load persistent objects.

queries ObjectsQuery[]

An array of ObjectsQuery objects that specifies queries executed to retrieve persistent objects.

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<ICollection[]>

A Task that returns an array of object collections. These object collections match specified query parameters.

See Also