Skip to main content
.NET 6.0+

XPCollection(CriteriaOperator, SortProperty[]) Constructor

Initializes a new instance of the XPCollection<T> class with default Session and criteria-specific options.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public XPCollection(
    CriteriaOperator theCriteria,
    params SortProperty[] sortProperties
)

Parameters

Name Type Description
theCriteria CriteriaOperator

The CriteriaOperator that specifies the criteria for object selection.

sortProperties SortProperty[]

An array of SortProperty that specifies the sort order for the collection.

Remarks

If the XPBaseCollection.LoadingEnabled property is set to true (default value) the collection is populated with T objects when its contents are accessed for the first time (for instance, when the XPBaseCollection.Count property is read).

The newly created collection will use the default session (Session.DefaultSession), to load and save T persistent objects.

See Also