Table of Contents

Class QueryWhereInCondition

Namespace
Datafication.Server.Core.Models
Assembly
Datafication.Server.Core.dll

Represents a WhereIn condition for filtering by a collection of values.

public class QueryWhereInCondition
Inheritance
object
QueryWhereInCondition

Properties

Column

Gets or sets the column name to filter on.

public string Column { get; set; }

Property Value

string

Values

Gets or sets the collection of values to include.

public object[]? Values { get; set; }

Property Value

object[]