Class RegistryFilter
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents a filter condition for registry queries.
public class RegistryFilter
- Inheritance
-
objectRegistryFilter
Properties
CaseSensitive
Gets or sets whether this filter is case-sensitive (for string comparisons).
public bool CaseSensitive { get; set; }
Property Value
- bool
Column
Gets or sets the column name to filter on.
public string Column { get; set; }
Property Value
- string
Operator
Gets or sets the comparison operator. Supported values: eq, ne, gt, gte, lt, lte, like, in
public string Operator { get; set; }
Property Value
- string
Value
Gets or sets the value to compare against.
public object? Value { get; set; }
Property Value
- object