Skip to main content
A newer version of this page is available. .

XPCollection(Session, Boolean) Constructor

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

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v18.2.dll

Declaration

public XPCollection(
    Session session,
    bool loadingEnabled
)

Parameters

Name Type Description
session Session

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

loadingEnabled Boolean

A Boolean value that specifies whether the collection is automatically populated with T objects from the data store when the collection 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 T persistent objects.

See Also