DataTable数据筛选

DataView view = newDt.DefaultView;
view.Sort = "Description asc,replyEnd desc";
DataTable table2 = view.ToTable();

原文地址:https://www.cnblogs.com/stevenjson/p/3139703.html