Session.BulkLoad(XPBaseCollection[]) Method
In This Article
This method loads XPBaseCollection objects passed as parameters.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public void BulkLoad(
params XPBaseCollection[] collections
)
#Parameters
Name | Type | Description |
---|---|---|
collections | XPBase |
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