Does Nest support sorting on multiple fields? For example, say I want to sort first by FieldA ascending and then by FieldB descending.
My current approach looks some
You can use it like this. You also can use the names from your model.
EsClient.Search(s => s .Query (qq=> {...}) .Sort(sort => sort.OnField(s => s.Name).Descending()) .Sort(sort => sort.OnField(s => s.Age).Descending()) )