Linq 多重排序中什么性能更好?

发布于 2024-11-03 00:28:39 字数 278 浏览 0 评论 0原文

下面哪个排序列表性能更高:

var sortedList = data.OrderBy(row => row.Fullname).ThenBy(row => row.Age);

或者这个:

var sortedList = from row in data 
                 orderby row.Fullname, row.Age
                 select row;

which of the sorted lists below is more performant:

var sortedList = data.OrderBy(row => row.Fullname).ThenBy(row => row.Age);

or this one:

var sortedList = from row in data 
                 orderby row.Fullname, row.Age
                 select row;

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

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

发布评论

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

评论(3

幽蝶幻影 2024-11-10 00:28:40

它们都将被转换为相同的表达式。

They both will be converted to the same expression.

苄①跕圉湢 2024-11-10 00:28:40

这两者是一样的。不会有什么区别。更多的是你喜欢打字的方式

That is both the same. There will be no difference.its more about how you like typing

总攻大人 2024-11-10 00:28:39

查询语法正在被编译器转换为方法语法,因此它们是相同的。

Query syntax is being converted to Method syntax by compiler, so they are the same.

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