Closed quinchs closed 1 year ago
This pr adds new extension methods that turn anonymous classes into arguments for queries, this allows a new api call like so:
var result = await client.QueryAsync<string>("select <str>$abc", new { abc = "def" });
In addition to this, the generic-less query methods were moved to be extensions, rather than default implementations of IEdgeDBQueryable
IEdgeDBQueryable
Summary
This pr adds new extension methods that turn anonymous classes into arguments for queries, this allows a new api call like so:
In addition to this, the generic-less query methods were moved to be extensions, rather than default implementations of
IEdgeDBQueryable