Skip to main content
.NET 6.0+

Session.BulkLoad(IXPBulkLoadableCollection[]) Method

This method loads IXPBulkLoadableCollection objects passed as parameters.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public void BulkLoad(
    params IXPBulkLoadableCollection[] collections
)

Parameters

Name Type Description
collections DevExpress.Xpo.Helpers.IXPBulkLoadableCollection[]

An array of collections to be populated.

Remarks

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

See Also