ExpBin Method

Create bin expression of specified type.

Definition

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

Parameters

name  String
 
type  ExpType
 

Return Value

Exp

Example

C#
// String bin "a" == "views"
Exp.EQ(Exp.Bin("a", Type.STRING), Exp.Val("views"))

See Also