多个DataSet数据合并

 DataSet ds = myIAppSet.GetHomeHottestList(siteID, , time);
DataSet ds1 = myIAppSet.GetHomeHottestList(siteID, , time);
if (ds1 != null && ds1.Tables[].Rows.Count > )
{
ds.Merge(ds1);
}
Merge方法,用于DataSet、DataTable,多个字段相同的数据源的合并,数据的追加。

仅记录....
上一篇:剑指Offer 包含min函数的栈


下一篇:转载ASP.net 中 OutputCache 指令各个参数的作用