We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5081e58 commit 3c2cbbfCopy full SHA for 3c2cbbf
samples/tarantool.org/README.md
@@ -33,7 +33,7 @@ cat <<EOT > Program.cs
33
using System;
34
using System.Threading.Tasks;
35
using ProGaudi.Tarantool.Client;
36
-using ProGaudi.Tarantool.Client.Model;
+
37
public class HelloWorld
38
{
39
static public void Main ()
@@ -45,7 +45,7 @@ public class HelloWorld
45
var box = await Box.Connect("127.0.0.1:3301");
46
var schema = box.GetSchema();
47
var space = await schema.GetSpace("examples");
48
- await space.Insert(TarantoolTuple.Create(99999, "BB"));
+ await space.Insert((99999, "BB"));
49
}
50
51
EOT
0 commit comments