.net linq多字段排序

var q = db.Customers.OrderBy(c => c.City).ThenBy(c => c.ContactName).ToList();

原文地址:https://www.cnblogs.com/xiamou/p/3259917.html