如何从DataRow []集合中获取DataTable?
我尝试了以下转换,但它返回null。
string ProcessQuery(ref DataRow[] rows)
{
DataTable _tb = new DataTable();
foreach (DataRow _dr in rows)
{
_tb.Rows.Add(_dr);
}
_tb.AcceptChanges();
...
...
}
请求帮助。
答案 0 :(得分:0)
应该不是_tb.importRow()吗?
答案 1 :(得分:0)
每个dataRow都有一个Table属性, 因此,如果您有数据行DataRow []只需选择任何行并继续:
rows[0].Table
string ProcessQuery(ref DataRow[] rows)
{
DataTable _tb = rows[0].Table;
// other stuff
}