DataTable Select 使用

 DataView dv = new DataView(table);
 dv.RowFilter = " Type='10' and Visible='true'";
 dv.Sort = "DisplaySequence ASC";
 DataTable dt_New = dv.ToTable();

  

原文地址:https://www.cnblogs.com/Yellowshorts/p/4094828.html