InOperator Constructors
The operator in Criteria Language expressions that matches a value with patterns.| Name | Parameters | Description |
|---|---|---|
| InOperator() | none | Initializes a new InOperator instance with the default settings. |
| InOperator(CriteriaOperator, CriteriaOperator[]) | leftOperand, operands | Initializes a new InOperator instance with the criteria that specify an expression to match, and pattern expressions. |
| InOperator(CriteriaOperator, IEnumerable<CriteriaOperator>) | leftOperand, operands | Initializes a new InOperator instance with criteria that specify an expression to match, and pattern expressions. |
| InOperator(String, CriteriaOperator[]) | propertyName, operands | Initializes a new InOperator instance with the specified name of a property to test, and pattern expressions. |
| InOperator(String, IEnumerable) | propertyName, values | Initializes a new InOperator instance with the specified name of a property to match, and pattern values. |
See Also