edgedb-net
edgedb-net copied to clipboard
The official .NET client library for EdgeDB
## Summary This PR adds the long awaited query builder to the main development branch. Before this awesome feature can be added, there is still some stuff to add: ####...
**Describe the bug** I submitted a question in Discord -> EdgeDb -> edgedb-dotnet on Mon, 1/15/24 but no one has responded as of 1/16/24 14:58 PAC. I've tried multiple options...
It would be super handy if it were possible to be able to log/print the query string Edgedb.Net constructs, including inlined parameters. e.g. `SELECT $param` with `"abc"` as the parameter...
It is not clear how to correctly access edgedb functions that return or accept unnamed tuples of values as input For example in schema I define the function `function getRepayment(id:...
## Summary As outlined in https://github.com/quinchs/EdgeDB.Net/issues/21, this tool provides a way to create `.cs` files from `.edgeql` files. All commands/parameters are up for change to meet consistency with other edgedb...
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: ```cs var result = await...
Proposing us to add some form of an abstract class that expects a `Id` prop of `Guid`. The motive behind this is that having a separate class means we could...
Related to #3, documentation is preferred for users wanting to find out about the CLI through the EdgeDB website. We can most likely use the `:cli:synposis:` Sphinx callable for all...
## Summary With the introduction of type converters, the bridge between Expressions and EdgeQL starts to bend. Currently, the querybuilder correctly translates assignment/initializations expressions and shapes, but it falls short...
## The Problem Code generation is a neat tool which alleviates the hassle of query strings while providing full fledge types for query results. The issue arises when you want...