Class QueryFilterCondition
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents a filter condition for DataBlock queries.
public class QueryFilterCondition
- Inheritance
-
objectQueryFilterCondition
Properties
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, contains, startswith, endswith
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