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
fieldName
stringThe name of the field to apply the operator on.
parameters
List<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
fieldName
stringThe name of the field to apply the operator on.
lowerValue
objectThe lower value of the range.
upperValue
objectThe upper value of the range.