ExpMapBin Method

Create map bin expression.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp MapBin(
	string name
)

Parameters

name  String
 

Return Value

Exp

Example

C#
// Bin a["key"] == "value"
Exp.EQ(
    MapExp.GetByKey(MapReturnType.VALUE, Type.STRING, Exp.Val("key"), Exp.MapBin("a")),
    Exp.Val("value"));

See Also