I have IDs which as GUIDs like this:
ee69cfc0-7750-2b6e-4c95-15fe5e26eec7
but I see that ElasticSearch stores it like that:
"7750" "15fe5e26eec7" "2b6e" "4c95" "ee69cfc0"
I have tried:
[String(Index = FieldIndexOption.No)] public string Id { get; set; }
and
[String(Index = FieldIndexOption.NotAnalyzed)] public string Id { get; set; }
but the result is the same..