Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

XPBaseCollection.Filter Property

Gets or sets the criteria used to filter objects on the client side.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v21.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[Browsable(false)]
public CriteriaOperator Filter { get; set; }

Property Value

Type Description
CriteriaOperator

A CriteriaOperator object that specifies the criteria to filter objects on the client side.

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 JoinOperand when building criteria for the Filter property, as this significantly increases the number of queries sent to the server.

See Also