有人可以通过向我展示如何对 LINQ 表达式进行排序来提供帮助。
我有以下内容:
.OrderByDescending(item => item.RowKey)
.Select((t, index) => new City.Grid()
{
PartitionKey = t.PartitionKey,
RowKey = t.RowKey,
Row = index + 1,
ShortTitle = t.ShortTitle,
})
我想做的是对以下内容进行排序:
1) 前四个字符或字段 RowKey
2) ShortTitle
我不确定如何对几个字符进行排序,也不确定如何进行二次排序。