Use Case
While reviewing #269, I noticed that WriteOptions cannot be passed as an argument per call to the WriteRecordsAsync method.
currently
await client.WriteRecordsAsync(data);
would like to...
var wo = new WriteOptions()
{
Precision = WritePrecision.Ms,
UseV2Api = false,
AcceptPartial = true,
NoSync = true
};
await client.WriteRecordsAsync(data, WriteOptions = wo);
- Passing write options to methods is a feature in other Influxdb3 client libraries.
- In some other CSharp libraries for database drivers and clients, the idiom of passing options through the method is supported. See for example in Mongodb csharp
It would be NICE if our libraries supported this.
Use Case
While reviewing #269, I noticed that
WriteOptionscannot be passed as an argument per call to theWriteRecordsAsyncmethod.currently
would like to...
It would be NICE if our libraries supported this.