gpt4 book ai didi

c# - 如何使用具有不同类的多个属性的 linq `Except`?

转载 作者:太空狗 更新时间:2023-10-29 22:30:47 25 4
gpt4 key购买 nike

我正在努力学习 Linq/Lambda表达并被困在某个地方。

我在做什么

我创建了两个具有属性的类,其中有一些共同的属性。这些类就像(它是测试代码)。

class TestA
{
public int Id { get; set; }
public int ProductID { get; set; }
public string Category { get; set; }

public TestA(int id, int procid, string category)
{
this.Id = id;
this.ProductID = procid;
this.Category = category;
}
}

class TestB
{
public int ProductID { get; set; }
public string Category { get; set; }

public TestB(int procid, string category)
{
this.ProductID = procid;
this.Category = category;
}
}

然后我为他们创建了两个列表,

        List<TestA> testListA = new List<TestA>();
List<TestB> testListB = new List<TestB>();
TestA t1 = new TestA(1, 254, "ProductA");
TestA t2 = new TestA(1, 236, "ProductA");
TestA t3 = new TestA(1, 215, "ProductB");
TestA t4 = new TestA(1, 175, "ProductB");
TestA t5 = new TestA(1, 175, "ProductC");
testListA.Add(t1);
testListA.Add(t2);
testListA.Add(t3);
testListA.Add(t4);
testListA.Add(t5);

TestB tt1 = new TestB(254, "ProdcutA");
TestB tt2 = new TestB(215, "ProductB");
TestB tt3 = new TestB(175, "ProductC");
testListB.Add(tt3);
testListB.Add(tt2);
testListB.Add(tt1);

现在得到我想要的结果 t2因为它是ProductID匹配项不在 testListB 中和 t4因为它有匹配 ProductIDtestListB但没有相同的 Category .
1) 我需要一个 List<A>每条记录:不再有 ProductID保存在 testListB

我可以得到 ,

  testListA.Select(x => x.ProductID).Except(testListB.Select(x => x.ProductID ));

2) 不再有匹配 ProductID 的记录和 Category在 testListB 中

我可以使用,

   testListA.Where(a => testListB.Any(b => a.ProductID == b.ProductID && a.Category != b.Category));

**我的问题**
是否有可能两个使单个 linq 表达式获得结果。我想到了使用工具 IEqualityComparer但我不确定如何实现 GetHashCode它适用于两种不同类型的类(class)。因此,要么将上述查询合并为单个查询,要么以任何其他方式实现自定义 Comparer对于两种不同类型的类(class)。还是有其他简单的方法?

最佳答案

您说过您只需要 testListA 中的这些对象:

  • 没有匹配ProductIDtestListB
  • 存在数学ProductID , 但不同 Category

因此,您的过滤器必须是:

!testListB.Any(b => a.ProductID == b.ProductID && a.Category == b.Category)

因此,将您的代码更改为:

testListA.Where(a => !testListB.Any(b => a.ProductID == b.ProductID && a.Category == b.Category));

第二种方法:

或者您可以创建一个新的 List<TestA>来自第二个列表:

 var secondListA = testListB.Select(x=> new TestA(){Category=x.Category, ProductID=x.ProductID}).ToList();

然后创建您的 Comparer :

sealed class MyComparer : IEqualityComparer<TestA>
{
public bool Equals(TestA x, TestA y)
{
if (x == null)
return y == null;
else if (y == null)
return false;
else
return x.ProductID == y.ProductID && x.Category == y.Category;
}

public int GetHashCode(TestA obj)
{
return obj.ProductID.GetHashCode();
}
}

并使用 Except() 重载,它通过使用指定的 IEqualityComparer<T> 产生两个序列的集合差异比较值。:

var result = testListA.Except(secondListA, new MyComparer ()).ToList();

关于c# - 如何使用具有不同类的多个属性的 linq `Except`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28782437/

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