手动查找相对于加入 LINQ 的优势?

发布于 2024-10-21 11:23:39 字数 296 浏览 1 评论 0原文

构建和使用手动查找 (ILookup) 方法是否比在本地 上使用 JoinGroupJoin 的联接更快LINQ 中的 >IEnumerable 序列?

我在某处读到编译器实际上将 JoinGroupJoin 的内部序列转换为 ILookup

单独使用 ILookup会有什么好处?

Is constructing and using a manual lookup (ILookup<T>) approach any faster than using a join with Join or GroupJoin on a local IEnumerable<T> sequence in LINQ?

I read somewhere that the compiler actually translates the inner sequence of Join and GroupJoin to ILookup<T> anyway.

What would ILookup<T> benefits of using it on it's own be?

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

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

发布评论

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

评论(1

橙幽之幻 2024-10-28 11:23:39

这取决于。如果您正在使用基于 DataContext 的对象,则连接会通过 select 语句一直转换到 SQL Server 中。如果它是 POCO(或更具体地说是普通旧 CLR 集合)或其他东西,那么是的,它用作 ILookup。

It depends. If you're working with objects that are DataContext based, then the join gets translated all the way down into the SQL server via the select statement. IF its a POCO (or more specifically a Plain Old CLR collection) or something else, then yes, its utilized as ILookup.

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