C#多条件查出来的多个DataSet,然后循环将数据整合
Posted jcsmzxs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#多条件查出来的多个DataSet,然后循环将数据整合相关的知识,希望对你有一定的参考价值。
private List<string> barList;
public List<string> BarList
{
get { return barList; }
set { barList = value; }
}
DataSet dt = new DataSet();
DataSet dt2 = null;
foreach (string data in help.BarList )
{
dt = DbOperatorStd.GetDataSet("select xxx from xxx where xxx=‘" + data + "‘");
if (dt2 == null)
{
dt2 = dt.Copy();
}
else
{
foreach (DataRow dtRow in dt.Tables[0].Rows)
{
DataRow m_nRow = null;
m_nRow = dt2.Tables[0].NewRow();
foreach (DataColumn dcCol in dt2.Tables[0].Columns)
{
m_nRow[dcCol.ColumnName] = dtRow[dcCol.ColumnName];
}
dt2.Tables[0].Rows.Add(m_nRow);
}
}
}
以上是关于C#多条件查出来的多个DataSet,然后循环将数据整合的主要内容,如果未能解决你的问题,请参考以下文章