Create map predicate where expression matches for any map key.
Example:
// Find records where any map key k = 7 in map bin m. PredExp.IntegerVar("k") PredExp.IntegerValue(7) PredExp.IntegerEqual() PredExp.MapBin("m") PredExp.MapKeyIterateOr("k")
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.9.16.1 (3.9.16.1)
Syntax
C#
public static PredExp MapKeyIterateOr( string varName )
Parameters
- varName
- Type: SystemString
Return Value
Type: PredExpSee Also