Skip to main content

InOperator(String, CriteriaOperator[]) Constructor

Initializes a new InOperator instance with the specified name of a property to test, and pattern expressions.

Namespace: DevExpress.XamarinForms.Core.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

NuGet Package: DevExpress.XamarinForms.Core

Declaration

public InOperator(
    string propertyName,
    params CriteriaOperator[] operands
)

Parameters

Name Type Description
propertyName String

The name of the collection property by whose values the operand calculates an aggregate value. It can be a path through object relationships, for example "Employer.Addresses". This value is case-sensitive.

operands CriteriaOperator[]

An array of criteria that are patterns, one of which the propertyName property value should match.

See Also