c# DataTable select 过滤返回新DataTable
2021-01-25 15:15
标签:return 字段 查询条件 vat one mda summary style str Select(); Select("id>=‘3‘ and name=‘3--hello‘");//支持and Select("id>=‘3‘ or id=‘1‘");//支持or Select("name like ‘%hello%‘");//支持like Select("id>5","id desc"); Select("id>5", "id desc",DataViewRowState.Added) DataRow[] dr = dt.Select(“col=‘XXXX‘”);//条件:就是字段名=‘某某‘ /// 执行DataTable中的查询返回新的DataTable /// if (dr== null || dr.Length == 0) return null c# DataTable select 过滤返回新DataTable 标签:return 字段 查询条件 vat one mda summary style str 原文地址:https://www.cnblogs.com/net-sky/p/12012626.html
/// 源数据DataTable
/// 查询条件
///
private DataTable GetNewDataTable(DataTable dt, string condition,string sortstr)
{
DataTable newdt = new DataTable();
newdt = dt.Clone();
DataRow[] dr = dt.Select(condition,sortstr);
for (int i = 0; i
{
newdt.ImportRow((DataRow)dr[i]);
}
return newdt;//返回的查询结果
}
————————————————
版权声明:本文为CSDN博主「qq1429351723」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_30469045/article/details/52105132
文章标题:c# DataTable select 过滤返回新DataTable
文章链接:http://soscw.com/index.php/essay/46854.html