Skip to main content

InOperator(String, IEnumerable) Constructor

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

Namespace: DevExpress.XamarinForms.Core.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

NuGet Package: DevExpress.XamarinForms.Core

Declaration

public InOperator(
    string propertyName,
    IEnumerable values
)

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.

values IEnumerable

An array of object that are values, one of which the propertyName property value should match.

See Also