Retrieve expression value from a variable.
Requires server version 5.6.0+.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.0.0 (5.3.0)
Syntax
C#
public static Exp Var( string name )
Parameters
- name
- Type: SystemString
Return Value
Type: ExpExamples
// 5 < a < 10 Exp.Let( Exp.Def("x", Exp.IntBin("a")), Exp.And( Exp.LT(Exp.Val(5), Exp.Var("x")), Exp.LT(Exp.Var("x"), Exp.Val(10))));
See Also