maui-devexpress-dot-maui-dot-collectionview-dot-dxcollectionview-b2f59dd5.md
Gets or sets the DXCollectionView‘s filter expression. This is a bindable property.
Namespace : DevExpress.Maui.CollectionView
Assembly : DevExpress.Maui.CollectionView.dll
NuGet Package : DevExpress.Maui.CollectionView
public CriteriaOperator FilterExpression { get; set; }
| Type | Description |
|---|---|
| CriteriaOperator |
A criteria operator that specifies a filter expression.
|
When you apply a filter, the view displays a subset of items that meet the specified criteria. You can filter data in the DXCollectionView against single or multiple data fields.
To build filter expressions, use Criteria Operators.
You can also set the FilterString property to specify a filter expression. Note that the FilterExpression and FilterString properties are dependent. If you update one of them, the other changes as well.
Call the CriteriaOperator.Parse method to convert a filter string to its CriteriaOperator equivalent.
The following example filters out persons whose name starts with the letter M:
using DevExpress.Data.Filtering;
//...
collectionView.FilterExpression = new FunctionOperator(FunctionOperatorType.StartsWith, new OperandProperty("Name"), new ConstantValue("M"));
See Also
Filter, Sort, and Group Data in Collection View for .NET MAUI