How can I sort a list of selected features based on a field value (i.e. the field name is "cityname")?
My code is this:
...
FeatureQueryResult queryResult = await featureTable.QueryFeaturesAsync(queryParams, QueryFeatureFields.LoadAll);
var features = queryResult.ToList();
// ... here I need to sort the features list
Many thanks
Massimo