API Reference
DataTablesBuiltInOperator
List of built in filtering operators that can be added to the DataTables SearchBuilder plugin. The operators are implemented in DataTablesSearchBuiltIns and exposed here as a strongly typed list for convenience.
Inheritance
- Enum
- DataTablesBuiltInOperator
Inherited Methods
public override sealed Int32 CompareTo(Object target) #Int32Parameters
- target Object
public override sealed String ToString(String format, IFormatProvider provider) #StringObsolete("The provider argument is not used. Use ToString(String) instead.")Parameters
- format String
Values
public const DataTablesBuiltInOperator NotStartsWith #Checks if value does not start with the input.
1public const DataTablesBuiltInOperator NotEndsWith #Checks if value does not end with the input.
3public const DataTablesBuiltInOperator NotContains #Checks if value does not contain the input.
5public const DataTablesBuiltInOperator ContainsCaseInsensitive #Case-insensitive contains check.
6public const DataTablesBuiltInOperator NotRegex #Does not match input as regular expression.
8public const DataTablesBuiltInOperator NotEquals #Checks if value does not equal the input.
10public const DataTablesBuiltInOperator EqualsCaseInsensitive #Case-insensitive equality check.
11public const DataTablesBuiltInOperator GreaterThan #Checks if numeric value is greater than input.
12public const DataTablesBuiltInOperator GreaterThanOrEqual #Checks if numeric value is greater than or equal to input.
13public const DataTablesBuiltInOperator LessThan #Checks if numeric value is less than input.
14public const DataTablesBuiltInOperator LessThanOrEqual #Checks if numeric value is less than or equal to input.
15public const DataTablesBuiltInOperator Between #Checks if numeric value falls between two inputs.
16public const DataTablesBuiltInOperator NotBetween #Checks if numeric value falls outside two inputs.
17public const DataTablesBuiltInOperator NotIn #Checks if value does not exist in provided list.
19public const DataTablesBuiltInOperator BetweenDates #Checks if date falls between two dates.
28public const DataTablesBuiltInOperator NotBetweenDates #Checks if date falls outside two dates.
29