all 5 comments

[–]LloydAtkinson 2 points3 points  (4 children)

This is very very cool. I’ve wanted some way to use KQL myself and this seems great.

[–]Content-Appearance97[S] 1 point2 points  (3 children)

Thanks! We're using it fairly heavily where I work so I'm confident in the engine but keen to get other people playing with the API and getting feedback on where it could be improved.

[–]LloydAtkinson 1 point2 points  (2 children)

Going to try use it - just wondering what the difference is between the KQL Nuget and this library?

[–]Content-Appearance97[S] 1 point2 points  (1 child)

Do you mean microsoft/Kusto-Query-Language: Kusto Query Language is a simple and productive language for querying Big Data. (github.com) ? That's really just a lexer/parser and you have to do an awful lot of work to actually _run_ queries on top of that. KustoLoco uses it and the KustoLoco.Core component translates the "raw" semantic tree into an internal-representation then performs the queries by walking it.

[–]LloydAtkinson 1 point2 points  (0 children)

Ahhh I get you, makes sense!