在DataTable中执行Select("条件")后,返回DataTable的方法
程序员文章站
2023-09-06 22:45:05
网上看到一个解决方法,感觉不错: private datatable getnewdatatable(datatable dt,string&...
网上看到一个解决方法,感觉不错:
private datatable getnewdatatable(datatable dt,string condition)
{
datatable newdt = new datatable();
newdt=dt.clone();
datarow[] dr = dt.select(condition);
for(int i=0;i<dr.length;i++)
{
newdt.importrow((datarow)dr[i]);
}
return newdt; //返回的查询结果
}
private datatable getnewdatatable(datatable dt,string condition)
{
datatable newdt = new datatable();
newdt=dt.clone();
datarow[] dr = dt.select(condition);
for(int i=0;i<dr.length;i++)
{
newdt.importrow((datarow)dr[i]);
}
return newdt; //返回的查询结果
}