0

如何从 DataRow[] 集合中获取 DataTable?

我尝试了以下转换,但它返回 null。

    string ProcessQuery(ref DataRow[] rows)
            {
                DataTable _tb = new DataTable();

                foreach (DataRow _dr in rows)
                {
                    _tb.Rows.Add(_dr); 
                }
                _tb.AcceptChanges(); 
...
...
           }

请求您的帮助。

4

2 回答 2

0

它不应该是 _tb.importRow() 吗?

于 2010-07-22T12:25:32.380 回答
0

每个 dataRow 都有一个 Table 属性,所以如果你有 datarows DataRow[] 只需选择任何行并执行:

rows[0].Table

string ProcessQuery(ref DataRow[] rows) 
        { 
            DataTable _tb = rows[0].Table; 
            // other stuff
       } 
于 2010-07-22T12:32:46.937 回答