Skip to main content
.NET 6.0+

XPBaseCollection.Load() Method

Loads persistent objects of a specific type from the data store into the collection.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public virtual void Load()

Remarks

The Load method is called automatically, to populate a collection with objects of a specific type from a data store. Generally there is no need to call this method directly.

To reload data from a data store to the collection, call the XPBaseCollection.Reload method.

Note

If the XPBaseCollection.LoadingEnabled property is set to false, calling the Load method has no effect.

See Also