创建匿名类作为字典中的自定义键
使用字典时,我总是覆盖 GetHashCode 和 Equals (或为字典提供自定义比较器)。
当我创建一个匿名类作为密钥时,幕后会发生什么?
示例代码....
var groups=(from item in items
group item by new { item.ClientId, item.CustodianId, item.CurrencyId }
into g
select new {
Key=g.Key,
Sum=g.Sum(x => x.Cash)
}).ToDictionary(item=>item.Key,item=>item.Sum);
此代码给了我预期的结果,但我没有为匿名类提供 GetHashCode 和 Equals 方法。 这段代码是否应该无法根据匿名类中的项目对我的项目进行分组?
While using dictionary, i always override GetHashCode and Equals ( or provide a custom comparer to the dictionary).
What happens behind the covers when i create an anonymous class as key?
Sample Code....
var groups=(from item in items
group item by new { item.ClientId, item.CustodianId, item.CurrencyId }
into g
select new {
Key=g.Key,
Sum=g.Sum(x => x.Cash)
}).ToDictionary(item=>item.Key,item=>item.Sum);
This code gives me the expected result, but i am not providing GetHashCode and Equals method for the anonymous class.
Shouldn't this code fail to group my items on the basis of items in anonymous class??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不 - 匿名类自动生成适当的 Equals/GetHashCode 实现。
来自 C# 语言规范,第 7.5.10.6 节:
Nope - the anonymous class automatically generates appropriate Equals/GetHashCode implementations.
From the C# language spec, section 7.5.10.6: