Constructor NotBetweenOperator
- Namespace
- Innova.Data.StructuredSearch.Operators
- Assembly
- Innova.Data.dll
NotBetweenOperator(string, List<object>)
Initializes a new instance of the NotBetweenOperator class with the specified field name and parameters.
public NotBetweenOperator(string fieldName, List<object> parameters)
Parameters
fieldNamestringThe name of the field to apply the operator on.
parametersList<object>The list of parameters for the operator.
NotBetweenOperator(string, object, object)
Initializes a new instance of the NotBetweenOperator class with the specified field name, lower value, and upper value.
public NotBetweenOperator(string fieldName, object lowerValue, object upperValue)
Parameters
fieldNamestringThe name of the field to apply the operator on.
lowerValueobjectThe lower value of the range.
upperValueobjectThe upper value of the range.