Enum Operator
Represents the comparison operators available for template query conditions.
Namespace: Umbraco.Cms.Core.Models.TemplateQuery
Assembly: Umbraco.Core.dll
Syntax
public enum Operator
Fields
| Name | Description |
|---|---|
| Contains | Checks if the string value contains the constraint. |
| Equals | Checks if the value equals the constraint. |
| GreaterThan | Checks if the value is greater than the constraint. |
| GreaterThanEqualTo | Checks if the value is greater than or equal to the constraint. |
| LessThan | Checks if the value is less than the constraint. |
| LessThanEqualTo | Checks if the value is less than or equal to the constraint. |
| NotContains | Checks if the string value does not contain the constraint. |
| NotEquals | Checks if the value does not equal the constraint. |