Tomas Fabian

Results 44 comments of Tomas Fabian
trafficstars

Another option would be to expose a new function for the `KSqlDbRestApiClient`: ```C# Task ExecuteQueryAsync( KSqlDbQuery ksqlDbQuery, CancellationToken cancellationToken = default (CancellationToken)); ``` Or something like this (just a prototype):...

Or perhaps it would be better to extend the `KSqldDbContext`, as the `KSqlDbRestApiClient` is already quite large: ```C# public class QueryResult ExecutePullQueryAsync(KSqlDbQuery ksqlDbQuery, CancellationToken cancellationToken = default(CancellationToken)); ```

@smourier I agree with your proposal. In our company we have/had huge investments in .NET Framework and C++/CLI (bridge to native C++). We have recently migrated to WPF netcoreapp 3.1....

Hello @actgardner, @anekdoti has prepared a PR that I’ve already reviewed and tested. Could you please take a look and review it as well? It would be great if you...