Linq 多字段排序,二次排序

清泛原创
Linq:ordered = source.OrderByDescending( t => t.f1 ).ThenBy( t => t.f2 );
类似SQL:select * from t1 order by f1 desc ,f2 asc


这种写法里 OrderBy、ThenBy 是升序的,OrderByDescending、ThenByDescending 是降序的。

Linq 排序 二次排序

分享到:
评论加载中,请稍后...
创APP如搭积木 - 创意无限,梦想即时!
回到顶部