InfluxDB.Net
InfluxDB.Net copied to clipboard
Support parameterized queries
It feels really weird to have to use custom query builders instead of being able to generate queries with something like:
_dbClient.QueryAsync("databaseName", "SELECT * FROM temp WHERE cpuId = @CpuId",
new
{
CpuId = cpuId
});
@joakimhew sounds good, contribution is very welcome!
@ziyasal Okay, I have a working solution that we are using within our team. I'll get some time to polish it and do a PR soon 👍