DataTable Select 使用

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

  

posted @ 2014-11-13 14:08  yellowshorts  阅读(125)  评论(0编辑  收藏  举报