如何提高为从 DataView 中删除重复项而创建的方法的性能?

发布于 2024-11-26 21:26:17 字数 856 浏览 0 评论 0原文

我创建了一种从 DataView 中删除重复项的方法。我无法选择更改 SQl 查询,因此我唯一的选择是修改从 DataView 中的数据库检索的现有数据。

DataView 数据

ID、姓名、日期

1,Paul,2011 年 5 月 12 日
2、马克,2011 年 5 月 12 日
1、保罗,2011年5月12日
2、Mark,12-05-2011

我的方法是:

 private static void RemoveDuplicates(DataView source, string keyColumn)
    {            
        DataRow[] dataRows = new DataRow[source.Table.Rows.Count];
        source.Table.Rows.CopyTo(dataRows, 0);

        var uniquePrimaryKeys = new List<Guid>(duplicateTable.Rows.Count);

        foreach (DataRow row in duplicateTable.Rows)
        {
            if (uniquePrimaryKeys.Contains((Guid)row[keyColumn]))
                source.Table.Rows.Remove(row);
            else
                uniquePrimaryKeys.Add((Guid)row[keyColumn]);
        }
    }

我想知道是否有更好的方法可以达到相同的结果但更快。

I have created a method to remove duplicates froma a DataView. I have not option to change the SQl query , so my only option is to modify the existing data retrieved from the Database in the DataView.

DataView data

Id, Name, Date

1, Paul, 12-05-2011
2, Mark, 12-05-2011
1, Paul, 12-05-2011
2, Mark, 12-05-2011

My method is:

 private static void RemoveDuplicates(DataView source, string keyColumn)
    {            
        DataRow[] dataRows = new DataRow[source.Table.Rows.Count];
        source.Table.Rows.CopyTo(dataRows, 0);

        var uniquePrimaryKeys = new List<Guid>(duplicateTable.Rows.Count);

        foreach (DataRow row in duplicateTable.Rows)
        {
            if (uniquePrimaryKeys.Contains((Guid)row[keyColumn]))
                source.Table.Rows.Remove(row);
            else
                uniquePrimaryKeys.Add((Guid)row[keyColumn]);
        }
    }

I wonder if there is a better method to achieve the same result but faster.

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

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

发布评论

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

评论(2

七度光 2024-12-03 21:26:17

实际上,ADO.NET 添加了一个(显然不为人所知)功能,允许您创建一个包含现有表中不同条目的新表。它的工作原理如下:
……
.....

http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataset/thread/ed9c6a6a-a93e-4bf5-a892-d8471b84aa3b/

Actually, ADO.NET added a(n apparently not well known) feature that allows you to create a new table containing the distinct entries from an existing table. Here's how it works:
.....
.....

http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataset/thread/ed9c6a6a-a93e-4bf5-a892-d8471b84aa3b/

孤蝉 2024-12-03 21:26:17

您可以使用 linq 组作为替代吗?我不能说它会快多少,但我敢说它会得到很好的优化。

var result = from x in source.Table.AsEnumerable()
    group x by new { id = x.Field<int>("ID"), Name = x.Field<string>("Name"), Date = x.Field<DateTime>("Date") }
    into groupedResults
    select groupedResults.Key;

Could you use a linq group as an alternative? I couldn't say how much quicker it would be but I dare say it will be well optimised.

var result = from x in source.Table.AsEnumerable()
    group x by new { id = x.Field<int>("ID"), Name = x.Field<string>("Name"), Date = x.Field<DateTime>("Date") }
    into groupedResults
    select groupedResults.Key;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文