ExpStringBin Method

Create string bin expression.

Definition

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

Parameters

name  String
 

Return Value

Exp

Example

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

See Also