Feb 20 2019 11:33 AM
Feb 20 2019 01:18 PM
SolutionDepending on the kind of aggregation you're doing, it may be useful to first summarize by name and then summarize again by tolower(name), so that your query converts significantly fewer strings to lowercase.
Doing so is possible, for example, in the following case, with a count() aggregation:
datatable(s:string) [ "abc", "def", "ABC", "AbC", "def", "ABc" ] | summarize c = count() by s | summarize c = sum(c) by s = tolower(s)
Aug 30 2019 06:50 AM
I found another problem with case insensitive, it doesn't seem to work on letter such as "Å Ä Ö".
E.g
Is it possible to instruct Data Explorer to use Invariantculure etc?