Create bin expression of specified type.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.1.0 (5.3.1)
Syntax
C#
public static Exp Bin( string name, ExpType type )
Parameters
- name
- Type: SystemString
- type
- Type: Aerospike.ClientExpType
Return Value
Type: ExpExamples
// String bin "a" == "views" Exp.EQ(Exp.Bin("a", Type.STRING), Exp.Val("views"))
See Also