MSDN orderby 子句
var people = from x in excel.Worksheet<CountryEconomics>("Sheet1")
let c = x.Inflation / x.GDP
orderby c
select c;
我不能只用一个数组来重现:
var economics = new[]
{
new {Country = "USA", GDP = 1, Inflation = 12},
new {Country = "GB", GDP = 2, Inflation = 12},
new {Country = "JPN", GDP = 3, Inflation = 12},
new {Country = "GER", GDP = 4, Inflation = 12},
new {Country = "CHI", GDP = 5, Inflation = 12},
new {Country = "CAN", GDP = 6, Inflation = 12},
};
var people = from x in economics
let c = x.Inflation/x.GDP
orderby c
select c;
// without "orderby c": 12, 6, 4, 3, 2, 2
// with "orderby c": 2, 2, 3, 4, 6, 12
Console.WriteLine(string.Join(", ", people));
这可能是 Linq-to-Excel 的一个缺陷。(我无法对此进行测试。)
如果是这种情况,您可以强制评估(通过.ToArray()
下面),然后对其进行排序。作为使用 LINQ 的任何静态数据的使用者,我希望调用ToArray
是不必要的。
var people = from x in economics
let c = x.Inflation/x.GDP
select c;
var sorted = people.ToArray().OrderBy(c => c);
Console.WriteLine(string.Join(", ", sorted));