C# 7.0 ValueTuples 与匿名类型

C# 7.0 ValueTuples vs Anonymous Types(C# 7.0 ValueTuples 与匿名类型)
本文介绍了C# 7.0 ValueTuples 与匿名类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

看看新的 C# 7.0 ValueTuples,我想知道它们是否会完全取代 Anonymous Types.我知道 ValueTuples 是结构,因此其行为与作为类的 Anonymous Types 有点不同.但是,我没有看到使用 Anonymous Type 而不是 ValueTuple 的用例.

Looking at the new C# 7.0 ValueTuples, I am wondering if they will completely replace Anonymous Types. I understand that ValueTuples are structs and therefore behave a bit differently than Anonymous Types which are classes. I don't see a use-case, however, in which I would prefer using an Anonymous Type over a ValueTuple.

是否存在使用 匿名类型 仍然比在 C# 7.0 中使用 ValueTuples 有益的用例?

Are there any use-cases where using an Anonymous Type would still be beneficial over using ValueTuples in C# 7.0?

推荐答案

匿名类型是不可变的,ValueTuple 不是.这反映在匿名类型公开属性,ValueTuple 公开字段的事实中.数据绑定几乎总是需要属性.

Anonymous types are immutable, ValueTuples are not. This is reflected in the fact that anonymous types expose properties, ValueTuples expose fields. Data binding almost always requires properties.

大量现有代码仅适用于引用类型,不适用于值类型.特别想到的是 Entity Framework 中的预测:对值类型的预测根本没有实现.

Plenty of existing code only works with reference types, not with value types. What in particular comes to mind are projections in Entity Framework: projections to value types are simply not implemented.

这篇关于C# 7.0 ValueTuples 与匿名类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)