单字段.OrderBy(p => p.Status).ToList();
多字段
.OrderBy(p => p.Status).ThenByDescending(p=>p.ApplyTime).ToList();
//注: .ThenBy正序 .ThenByDescending倒序
EF ---- OrderBy多字段用法
原文:https://www.cnblogs.com/JoeYD/p/13202926.html