根据两个实体集的属性之一检查它们是否相等的最佳方法?
我有来自同一个类的两个对象,假设它名为 Class1
,Class1
有一个 EntitySet
为 ClassChild
,
基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
SequenceEqual
方法:该方法使用默认的相等比较器来使用自定义比较器,请参阅这里 或这个例子:
You can use the
SequenceEqual
-method:That uses the default equality comparer to use a custom one see HERE or this example: