Enum CriteriaComparisonMethod
Specifies the comparison methods available for evaluating string properties in criteria expressions.
Namespace: Coree.NETStandard.Classes.Criteria
Assembly: Coree.NETStandard.dll
Syntax
public enum CriteriaComparisonMethod
Fields
| Name | Description |
|---|---|
| Contains | Specifies that the string property should contain a specified substring. |
| EndsWith | Specifies that the string property should end with a specified substring. |
| Equals | Specifies that the string property should be equal to a specified string, typically considering case-sensitivity. |
| GreaterThan | Specifies that a numeric or date/time property should be greater than a specified value. |
| GreaterThanOrEqual | Specifies that a numeric or date/time property should be greater than or equal to a specified value. |
| IsNullOrWhiteSpace | Specifies that the string property should be either null, empty, or consist only of whitespace characters. |
| LessThan | Specifies that a numeric or date/time property should be less than a specified value. |
| LessThanOrEqual | Specifies that a numeric or date/time property should be less than or equal to a specified value. |
| StartsWith | Specifies that the string property should start with a specified substring. |