edgedb / edgedb-net

The official .NET client library for EdgeDB
https://edgedb.com
Apache License 2.0
83 stars 9 forks source link

Bug: Tuple cannot be serialized #43

Closed quinchs closed 1 year ago

quinchs commented 1 year ago

Summary

Tuples can be defined as globals as well as arguments as per https://github.com/edgedb/edgedb/pull/4489, currently, the .NET binding doesn't implement a way to encode tuples.

The tuple codec will have to become a complex codec to support ValueTuple<>, Tuple<>, and TransientTuple during serialization, following the pipeline defined in #28

quinchs commented 1 year ago

implemented in https://github.com/edgedb/edgedb-net/pull/45