将 DataRowCollection 转换为 DataRow[]

发布于 2024-07-08 06:30:31 字数 54 浏览 11 评论 0原文

将 DataRowCollection 实例转换为 DataRow[] 的最佳执行方法是什么?

What's the best performing way to convert a DataRowCollection instance to a DataRow[]?

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

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

发布评论

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

评论(4

梦过后 2024-07-15 06:30:32
DataRow[] rows = dt.Select();

假设您仍然可以访问数据表。

DataRow[] rows = dt.Select();

Assuming you still have access to the datatable.

悟红尘 2024-07-15 06:30:32

为了完整起见,这是另一种方式(使用 Linq),它保留行排序

DataRow[] rows = dt.Rows.Cast<DataRow>().ToArray()

For the sake of completeness, this is another way (with Linq), and it preserve the row ordering:

DataRow[] rows = dt.Rows.Cast<DataRow>().ToArray()
小兔几 2024-07-15 06:30:32

这有点明显,但是:

DataRowCollection.CopyTo(DataRow[] array, Int32 offset)

似乎无论如何,您都必须迭代该集合(CopyTo 迭代内部 DataRowTree 元素)。

我想您可以使用反射来访问非公共树,但成本很高。

This is kind of obvious, but:

DataRowCollection.CopyTo(DataRow[] array, Int32 offset) ?

It seems like no matter what, you're going to have to iterate the collection (CopyTo iterates the internal DataRowTree elements).

I suppose you could use reflection to access the non-public tree, but at a significant cost.

任性一次 2024-07-15 06:30:32

如果您无权访问包含表,则可以使用扩展方法:

public static class DataRowCollectionExtensions
{
    public static IEnumerable<DataRow> AsEnumerable(this DataRowCollection source)
    {
        return source.Cast<DataRow>();
    }
}

其后:

DataRow[] dataRows = dataRowCollection.AsEnumerable().ToArray();

但如果您有权访问包含表,则最好使用 DataTableAsEnumerable 访问行 扩展方法 (说明来源):

DataRow[] dataRows = dataTable.AsEnumerable().ToArray();

无论哪种方式,您可以使用 DataTableSelect 方法以及多个重载 (说明来源):

DataRow[] dataRows = dataTable.Select();

If you have not access to the containing table, you may use the extension method:

public static class DataRowCollectionExtensions
{
    public static IEnumerable<DataRow> AsEnumerable(this DataRowCollection source)
    {
        return source.Cast<DataRow>();
    }
}

And thereafter:

DataRow[] dataRows = dataRowCollection.AsEnumerable().ToArray();

But if you have access to the containing table, it's better to access rows using DataTable's AsEnumerable extension method (Description, Source):

DataRow[] dataRows = dataTable.AsEnumerable().ToArray();

Either way you may use DataTable's Select method with several overloads (Description, Source):

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