Create list predicate where expression matches for all list items.
Example:
Namespace: Aerospike.Client
// Find records where all list elements v != "goodbye" in list bin x.
PredExp.StringVar("v")
PredExp.StringValue("goodbye")
PredExp.StringUnequal()
PredExp.ListBin("x")
PredExp.ListIterateAnd("v")
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.4.0.0 (3.4.5)
Syntax
Parameters
- varName
- Type:
System String
See Also