我想从Kusto数据库检索数据从C#应用程序可以任何人帮助我在这方面。我有知识编写Kusto查询,但我需要一些帮助,从Azure Kusto数据库拉托管在Azure。
我尝试了下面的代码,但它不工作:
var client = Kusto.Data.Net.Client.KustoClientFactory.CreateCslQueryProvider("https://help.kusto.windows.net/Samples;Fed=true");
var reader = client.ExecuteQuery("MyTable | count");
// Read the first row from reader -- it's 0'th column is the count of records in MyTable
// Don't forget to dispose of reader when done.
1条答案
按热度按时间g2ieeal71#
您能详细说明上面的代码有哪些不起作用(您得到的错误消息是什么)吗?
此外,完整(虽然简单)的例子可以在下面找到: