In case there is some issue with the example, here's the example data:
Code: Select all
[
{ "Key": "AA", "Value": "5" },
{ "Key": "AB", "Value": "6" },
{ "Key": "AC", "Value": "7" },
{ "Key": "AE", "Value": "8" },
{ "Key": "A-D", "Value": "2" },
{ "Key": "A1", "Value": "3" },
{ "Key": "A3", "Value": "4" },
{ "Key": "A-2", "Value": "1" }
]
A-2
A-D
A1
A3
AA
AB
AC
AE
Instead, I get this:
A1
A-2
A3
AA
AB
AC
A-D
AE
If there is a way to work around this (Using only 'Interpretation Mode', I'm in .NET Core, which doesn't support compilation, but that's another issue entirely) please let me know.