Returns the start of an expression that will evaluate if any elements
inside of an array match a given predicate
Usage:
Expression.Any("x").In(Expression.Property("prop")).Satisfies(Expression.Variable("x").EqualTo(42))
Namespace:
Couchbase.Lite.Query
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 0.0.0
Syntaxpublic static IExpressionIn Any(
string variable
)
Parameters
- variable
- Type: SystemString
The name to assign to the variable that will be used later
via Variable(String)
Return Value
Type:
IExpressionInThe first portion of the completed expression for further modification
See Also