PredExp ListIterateAnd Method Aerospike
Create list predicate where expression matches for all list items. Example:
            // 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")
            

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.5.0.0 (3.5.0)
Syntax

See Also