Class Any
- Namespace
- YndigoBlue.Velocity.Functions
- Assembly
- YndigoBlue.Velocity.dll
Represents the ANY quantified comparison operator that tests if any value in a subquery satisfies a condition.
public class Any : Function, IElement, ICheckItem, IDefaultItem, IFilterItem
- Inheritance
-
Any
- Implements
Remarks
The ANY operator is used with a comparison operator (=, <, >, etc.) to test if the condition is true for at least one value returned by a subquery. For example, "value > ANY (subquery)" returns true if value is greater than at least one value in the subquery result. This is useful for conditional filtering based on subquery results, set membership tests, and complex WHERE clause conditions.
Constructors
- Any(IEnumerable<IElement>)
Initializes a new instance of ANY for multiple elements.
- Any(IElement)
Initializes a new instance of ANY for a single element.