gpt4 book ai didi

c# - ASP.NET : Filter unique rows from Data table

转载 作者:行者123 更新时间:2023-11-30 13:25:03 25 4
gpt4 key购买 nike

您好,我正在使用 asp.net 中的数据表。我无法了解我们如何从数据表中过滤唯一数据。

问题描述如下

Data Table:
Consumer No Date Value
ABC001 1st Aug 09 1
ABC001 1st Aug 09 2
ABC001 2nd Aug 09 1
XYZ001 1st Aug 09 1
XYZ002 1st Aug 09 1
XYZ002 1st Aug 09 2

我想根据应用于第一列和第二列的过滤器来跟踪输出。在输出中我们可以看到第一列和第二列的组合是唯一的。

Consumer No Date             
ABC001 1st Aug 09
ABC001 2nd Aug 09
XYZ001 1st Aug 09
XYZ002 1st Aug 09

如何在数据表上应用过滤器?

最佳答案

yourdataset.Tables["TableName"].DefaultView.ToTable(true,"disticecolumn");

Creates and returns a new DataTable based on rows in an existing DataView.

.ToTable 方法中的 true 指定返回的 DataTable 包含其所有列都具有不同值的行。

来自 msdn文章

编辑:

从可以使用“distinct”关键字的数据库中执行此操作会更容易。

关于c# - ASP.NET : Filter unique rows from Data table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1276150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com