Skip to main content
.NET 6.0+

XPCollection(Session, XPClassInfo, Boolean) Constructor

Initializes a new instance of the XPCollection class with specified settings.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public XPCollection(
    Session session,
    XPClassInfo objType,
    bool loadingEnabled
)

Parameters

Name Type Description
session Session

The Session that will be used to load and save persistent objects.

objType XPClassInfo

The persistent class’s metadata information of objects to include into the collection.

loadingEnabled Boolean

A Boolean value that specifies whether the collection is automatically populated with objects from the data store when the collection’s content is accessed for the first time (for instance, when the XPBaseCollection.Count property is read). This parameter is used to initialize the XPBaseCollection.LoadingEnabled property.

Remarks

The newly created collection will use the specified session to load and save persistent objects.

See Also