Skip to main content
.NET 6.0+

Session.BulkLoadAsync(CancellationToken, XPBaseCollection[]) Method

Asynchronously retrieves persistent objects to populate specified XPBaseCollection type collections.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public Task BulkLoadAsync(
    CancellationToken cancellationToken = default(CancellationToken),
    params XPBaseCollection[] collections
)

Parameters

Name Type Description
collections XPBaseCollection[]

An array of empty XPBaseCollection type collections that receive persistent objects from a data store.

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

A Task that populates specified collections.

Remarks

The result is the same as calling the XPBaseCollection.Load method for each collection individually. This method simplifies loading multiple collections when lazy loading is not appropriate.

See Also