diff --git a/by-language/csharp-npgsql/DemoTypes.cs b/by-language/csharp-npgsql/DemoTypes.cs index 87d2446e..4c9f7546 100644 --- a/by-language/csharp-npgsql/DemoTypes.cs +++ b/by-language/csharp-npgsql/DemoTypes.cs @@ -156,6 +156,7 @@ INSERT INTO testdrive.example ( cmd.Parameters.AddWithValue("ip", "127.0.0.1"); cmd.Parameters.AddWithValue("array", new List{"foo", "bar"}); // FIXME: System.NotSupportedException: Cannot resolve 'hstore' to a fully qualified datatype name. The datatype was not found in the current database info. + // https://github.com/crate/zk/issues/26 // cmd.Parameters.AddWithValue("object", new Dictionary(){{"foo", "bar"}}); cmd.Parameters.AddWithValue("object", @"{""foo"": ""bar""}"); cmd.Parameters.AddWithValue("geopoint", new List{85.43, 66.23});