Table of Contents

Enum CriterionValueType

Namespace
YndigoBlue.Velocity.Enums
Assembly
YndigoBlue.Velocity.dll

Specifies the type of value used in a query criterion.

public enum CriterionValueType

Fields

Literal = 1

A literal value (string, number, date, etc.) that will be parameterized in the SQL query.

Column = 2

A reference to a column name in the database.

SubQuery = 3

A subquery that returns a value or set of values.

Remarks

Criteria are used in WHERE clauses and JOIN conditions to compare values. The value type determines how the criterion value is interpreted and rendered in SQL.