XPBaseCollection.Filter Property
Gets or sets the criteria used to filter objects on the client side.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
[Browsable(false)]
public CriteriaOperator Filter { get; set; }
#Property Value
Type | Description |
---|---|
Criteria |
A Criteria |
#Remarks
The XPBaseCollection.Criteria property specifies the criteria used to filter objects on the storage side. After objects that meet these criteria are retrieved to the XPBaseCollection, they are filtered again by the Filter criteria.
To disable the criteria specified by the Filter property set this property to null (Nothing in Visual Basic).
Unlike the XPCollection’s XPBaseCollection.Criteria, Filter criteria can be built on non-persistent properties.
Note
For performance reasons, we recommend that you not use the Join
#Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Filter property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.