C# を使用して Azure DataExplorer クラスターへの接続を確立しようとしています。https://docs.microsoft.com/en-us/azure/kusto/api/netfx/about-kusto-dataで C# を参照し、 nuget をインストールしましたVisual Studio で kusto.data をパッケージ化してコードをコピーし、コマンド プロンプトで dotnet run を実行しましたが、機能しませんでした。
以下は私のコードです-
using Microsoft.Azure.Management.Kusto;
using System;
namespace LensDashboradOptimization
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
//var clusterUrl = "https://masvaas.kusto.windows.net";
//var kcsb = new Kusto.Data.KustoConnectionStringBuilder(clusterUrl);
//Console.WriteLine(kcsb);
// 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.
var client = Kusto.Data.Net.Client.KustoClientFactory.CreateCslQueryProvider("https://masvaas.windows.net/Samples;Fed=true");
var reader = client.ExecuteQuery("MyTable | count");
Console.WriteLine(reader);
}
}
}
両方試しましたがfed=true
、WithAadUserPromptAuthentication();
どちらもうまくいきませんでした。何か不足していますか?