Skip to main content
A newer version of this page is available.
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

EFObjectSpace.ApplyFilter(Object, CriteriaOperator) Method

Filters a particular collection on the client side.

Namespace: DevExpress.ExpressApp.EF

Assembly: DevExpress.ExpressApp.EF.v19.2.dll

Declaration

public override void ApplyFilter(
    object collection,
    CriteriaOperator filter
)

Parameters

Name Type Description
collection Object

A collection to be filtered.

filter CriteriaOperator

A DevExpress.Data.Filtering.CriteriaOperator object that specifies the criteria used to filter objects.

Remarks

Does nothing. Required for supporting the IObjectSpace interface. To filter a collection, use the EFObjectSpace.ApplyCriteria method instead.

See Also