Class QueryWhereNotCondition
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents a WhereNot condition for excluding a specific value.
public class QueryWhereNotCondition
- Inheritance
-
objectQueryWhereNotCondition
Properties
Column
Gets or sets the column name to filter on.
public string Column { get; set; }
Property Value
- string
Value
Gets or sets the value to exclude.
public object? Value { get; set; }
Property Value
- object