Query Kusto database with C# and get result as List<T>.
How to query Kusto (Azure data explorer) in C# and get strong type result? First, build an abstract class as a Kusto response row. public abstract class KustoResponseRow { public void SetPropertiesFromReader(IDataReader reader) { foreach (var property in this.GetType().GetProperties()) { if (property.SetMethod != null) { property. …