GroupOperator Constructors
The operator in Criteria Language expressions that combines operands with logical AND or OR.| Name | Parameters | Description |
|---|---|---|
| GroupOperator() | none | Initializes a new GroupOperator instance with the default settings. |
| GroupOperator(CriteriaOperator[]) | operands | Initializes a new GroupOperator instance with specified operands that the operator logically combines. |
| GroupOperator(GroupOperatorType, CriteriaOperator[]) | type, operands | Initializes a new GroupOperator instance with the specified operator type and operands that the operator logically combines. |
| GroupOperator(GroupOperatorType, IEnumerable<CriteriaOperator>) | type, operands | Initializes a new GroupOperator instance with the specified operator type and operands that the operator logically combines. |
See Also