PredExp MapKeyIterateAnd Method Aerospike
Create map key predicate where expression matches for all map keys. Example:
            // Find records where all map keys k < 5 in map bin m.  
            PredExp.IntegerVar("k")
            PredExp.IntegerValue(5)
            PredExp.IntegerLess()
            PredExp.MapBin("m")
            PredExp.MapKeyIterateAnd("k")
            

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.7.0 (4.2.7)
Syntax

Parameters

varName
Type: System String
See Also