Create map bin expression.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.1.0 (5.3.1)
Syntax
C#
public static Exp MapBin( string name )
Parameters
- name
- Type: SystemString
Return Value
Type: ExpExamples
// Bin a["key"] == "value" Exp.EQ( MapExp.GetByKey(MapReturnType.VALUE, Type.STRING, Exp.Val("key"), Exp.MapBin("a")), Exp.Val("value"));
See Also