Skip to main content
A newer version of this page is available. .

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