DataRow[] 到 DataTable 的 ASP.NET 转换

发布于 2024-09-11 03:10:38 字数 393 浏览 4 评论 0原文

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

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

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

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

请求你的帮助。

How to get a DataTable from DataRow[] collection ?

I tried the following conversion , but it returns null.

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

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

Request your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

方圜几里 2024-09-18 03:10:38

每个 dataRow 都有一个 Table 属性,
因此,如果您有数据行 DataRow[],只需选择任意行即可:

rows[0].Table

string ProcessQuery(ref DataRow[] rows) 
        { 
            DataTable _tb = rows[0].Table; 
            // other stuff
       } 

Each dataRow has a Table property,
So if you have the datarows DataRow[] just pick any row and go:

rows[0].Table

string ProcessQuery(ref DataRow[] rows) 
        { 
            DataTable _tb = rows[0].Table; 
            // other stuff
       } 
胡大本事 2024-09-18 03:10:38

不应该是_tb.importRow()吗?

should it not be _tb.importRow()?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文