XPCollection(Session, CriteriaOperator, SortProperty[]) Constructor
Initializes a new instance of the XPCollection<T> class with a specified Session and criteria-specific options.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public XPCollection(
Session session,
CriteriaOperator theCriteria,
params SortProperty[] sortProperties
)
#Parameters
Name | Type | Description |
---|---|---|
session | Session | The Session that will be used to load and save T persistent objects. |
the |
Criteria |
The Criteria |
sort |
Sort |
An array of Sort |
#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 specified session to load and save T persistent objects.