Open quinchs opened 1 year ago
Currently, there's no way to configure state within transactions. The API for state on the client should be accessible on the tx object like so:
tx
var result = await client.TransactionAsync(async (tx) => tx.WithGlobals(new Dictionary<string, object> { { "abc": 123L } }) .QuerySingleAsync<long>("select global abc") );
Currently, there's no way to configure state within transactions. The API for state on the client should be accessible on the
tx
object like so: