Closed davidnx closed 2 years ago
Class Operators should be public to be consistent with class Functions that is already public:
Operators
Functions
https://github.com/microsoft/Kusto-Query-Language/blob/fb8a70cb4f8e6ef6786b0c97764330c646f976a4/src/Kusto.Language/Operators.cs#L10
https://github.com/microsoft/Kusto-Query-Language/blob/fb8a70cb4f8e6ef6786b0c97764330c646f976a4/src/Kusto.Language/Functions.cs#L10-L13
This would be useful e.g. in https://github.com/microsofthackathons/baby-kusto-csharp to match Kusto operators to specific implementations, using the OperatorSymbol as the key to match on.
OperatorSymbol
This was an oversight. It was meant to be public. It will be public soon.
Its now public
Thanks!
Class
Operators
should be public to be consistent with classFunctions
that is already public:https://github.com/microsoft/Kusto-Query-Language/blob/fb8a70cb4f8e6ef6786b0c97764330c646f976a4/src/Kusto.Language/Operators.cs#L10
https://github.com/microsoft/Kusto-Query-Language/blob/fb8a70cb4f8e6ef6786b0c97764330c646f976a4/src/Kusto.Language/Functions.cs#L10-L13
This would be useful e.g. in https://github.com/microsofthackathons/baby-kusto-csharp to match Kusto operators to specific implementations, using the
OperatorSymbol
as the key to match on.