Azure / azure-kusto-dotnet

Azure Data Explorer (Kusto) SDK for .NET
MIT License
8 stars 5 forks source link

Document ExecuteQueryV2 #16

Open chriswue opened 1 year ago

chriswue commented 1 year ago

There is a (new?) method called ExecuteQueryV2 but no documentation on how to use it correctly and when it might beneficial to use it over the ExecuteQuery one. The return interface is also different so one cannot simply drop it in. I would assume it allows to stream back query results rather than loading everything in one go which would imply it's more useful when larger result sets are expected but one question is whether it can be used in general instead of the v1 one or are there any caveats that one must consider?

yogilad commented 1 year ago

Noted. In the meantime you can use this sample https://github.com/Azure/azure-kusto-samples-dotnet/tree/master/client/HelloKustoV2

The API description is found here, https://learn.microsoft.com/en-us/azure/data-explorer/kusto/api/rest/response2

ThiemeNL commented 11 months ago

Hi, could you please improve the API documentation? For example add a http request with http headers and body. I would like to use a httpclient to call the api directly.