Enum StringPropertyMatchType
Determines how to match a string property value.
Namespace: Umbraco.Cms.Core.Persistence.Querying
Assembly: Umbraco.Core.dll
Syntax
public enum StringPropertyMatchType
Fields
| Name | Description |
|---|---|
| Contains | Matches if the property contains the value. |
| EndsWith | Matches if the property ends with the value. |
| Exact | Matches the exact value. |
| StartsWith | Matches if the property starts with the value. |
| Wildcard | Matches using wildcard pattern, where % represents any sequence of characters. |