如何基于对象属性删除两个list <object>项目之一?

时间:2018-11-27 12:04:42

标签: c# asp.net asp.net-web-api c#-4.0

我有一个列表,其中包含相似但具有不同createdOn的项目 日期。我只想保留具有相同displayName但最新的createdOn日期的项目。 我创建了一个谓词来比较基于displayName的列表项,因此我能够找到是否有一个具有相同displayName的项,但是我不确定如何找到具有较旧createdOn的其他项日期并删除它。

  

谓词

public bool Equals(Obj x, Obj y)
        {
            if (x == null && y == null) { return true; }
            if (x == null || y == null) { return false; }

            return x.DisplayName == y.DisplayName;
        }

        public int GetHashCode(Obj obj)
        {
            if (obj == null || obj.DisplayName == null) { return 0; }
            return obj.DisplayName.GetHashCode();
        }
  

RemoveDuplicateMethod:

public static List<Obj> RemoveDuplicatesSet(List<Obj> items, ValueComparer valueComparer)
    {
        // Use HashSet to maintain table of duplicates encountered.
        var result = new List<Obj>();
        var set = new HashSet<Obj>(valueComparer);
        for (int i = 0; i < items.Count; i++)
        {
            // If not duplicate, add to result.
            if (!set.Contains(items[i]))
            {
                result.Add(items[i]);
                // Record as a future duplicate.
                set.Add(items[i]);
            }
        }
        return result;
    }

有什么想法吗?

2 个答案:

答案 0 :(得分:4)

好吧,我会以这种方式使用它:

List<Obj> items = items
    .GroupBy(x => x.Id) // or DisplayName, question is unclear
    .Select(g => g.OrderByDescending(x => x.CreatedOn).First())
    .ToList();

您也可以将比较器传递给GroupBy,尽管我不知道ValueComparer,但如果它实现了IEqualityComparer<Obj>,就可以了。

答案 1 :(得分:0)

我不知道您拥有的数据,但尝试使用LINQ。

var dItems = items.Distinct();

如果只希望最新的变量,请使用lambda表达式。

var dItems = items.OrderByDescending(x => x.createdOn).Distinct();