得到筛选后的新的DataRow;
DataRow[] rows=dt.Select("1=1 and flag <> 1")
清空原DataTable并赋值给新建表
DataTable dtNew=dt.Clone();
把筛选后的结果添加到新建表中
for(int i=0;i<rows.Length;i++)
{
dtNew.ImportRow(rows[i]);
}
得到筛选后的新的DataRow;
DataRow[] rows=dt.Select("1=1 and flag <> 1")
清空原DataTable并赋值给新建表
DataTable dtNew=dt.Clone();
把筛选后的结果添加到新建表中
for(int i=0;i<rows.Length;i++)
{
dtNew.ImportRow(rows[i]);
}