FunctionOperator Constructors
The operator in Criteria Language expressions that represents a function.| Name | Parameters | Description |
|---|---|---|
| FunctionOperator() | none | Initializes a new FunctionOperator instance with the default settings. |
| FunctionOperator(FunctionOperatorType, CriteriaOperator[]) | type, operands | Initializes a new FunctionOperator instance with the specified predefined function type and operands. |
| FunctionOperator(FunctionOperatorType, IEnumerable<CriteriaOperator>) | type, operands | Initializes a new FunctionOperator instance with the specified predefined function type and operands. |
| FunctionOperator(String, CriteriaOperator[]) | customFunctionName, operands | Initializes a new FunctionOperator instance with the specified custom function name and operands. |
| FunctionOperator(String, IEnumerable<CriteriaOperator>) | customFunctionName, operands | Initializes a new FunctionOperator instance with the specified custom function name and operands. |
See Also