根据两个实体集的属性之一检查它们是否相等的最佳方法?

发布于 2024-11-24 10:12:20 字数 247 浏览 2 评论 0原文

我有来自同一个类的两个对象,假设它名为 Class1Class1 有一个 EntitySetClassChild ,
基于 ClassChild 的 EntitySets值和计数)的最佳方式是什么?代码>ClassChild (字符串一)

谢谢。

I have two Objects from the same Class, lets say it named as Class1, Class1 has an EntitySet of ClassChild,
What is the best way to indicate that these Two objects have the same exact ClassChild's EntitySets (values and count) based on one property of the ClassChild (string one)?

Thank you.

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

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

发布评论

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

评论(1

抽个烟儿 2024-12-01 10:12:20

您可以使用 SequenceEqual 方法:

bool equal = obj1.ClassChildren.SequenceEqual(obj2.ClassChildren)

该方法使用默认的相等比较器来使用自定义比较器,请参阅这里 或这个例子:

class ClassChildComparer : IEqualityComparer<ClassChild>
{
    public bool Equals(ClassChild x, ClassChild y)
    {
        return x.Property == y.Property;
    }

    // If Equals() returns true for a pair of objects then GetHashCode() must return the same value for these objects.
    public int GetHashCode(ClassChild c)
    {
        return c.Property.GetHashCode();
    }

}

//and then:

bool equal = obj1.ClassChildren.SequenceEqual(obj2.ClassChildren, new ClassChildComparer())

You can use the SequenceEqual-method:

bool equal = obj1.ClassChildren.SequenceEqual(obj2.ClassChildren)

That uses the default equality comparer to use a custom one see HERE or this example:

class ClassChildComparer : IEqualityComparer<ClassChild>
{
    public bool Equals(ClassChild x, ClassChild y)
    {
        return x.Property == y.Property;
    }

    // If Equals() returns true for a pair of objects then GetHashCode() must return the same value for these objects.
    public int GetHashCode(ClassChild c)
    {
        return c.Property.GetHashCode();
    }

}

//and then:

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