Click or drag to resize

ArrayExpressionAny Method

Returns the start of an expression that will evaluate if any elements inside of an array match a given predicate Usage:
ArrayExpression.Any("x").In(Expression.Property("prop")).Satisfies(ArrayExpression.Variable("x").EqualTo(42))

Namespace:  Couchbase.Lite.Query
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0520
Syntax
C#
public static IArrayExpressionIn Any(
	IVariableExpression variable
)

Parameters

variable
Type: Couchbase.Lite.QueryIVariableExpression
The name to assign to the variable that will be used later via Variable(String)

Return Value

Type: IArrayExpressionIn
The first portion of the completed expression for further modification
See Also