Entity Framework List Contains in lambda(实体框架列表包含在 lambda)
问题描述
我想使用特定 ID 查询项目.例如:
I want to query items with specific IDs using. For example:
var ids = new List<int> { 1, 3, 5 };
var items = context.Items.Where(item => ids.Contains(item.ID)).ToList();
问题:
- 这是否会使用 SQL
IN
运算符生成单个查询? - 这段代码在性能方面可以吗?
- 有没有更好的方法?
- Will this generate a single query with SQL
IN
operator? - Is this code OK in terms of performance?
- Are there any better ways to do it?
我正在使用带有 Microsoft SQL Server 的 Entity Framework 6.
I am using Entity Framework 6 with Microsoft SQL Server.
推荐答案
- 这会使用 SQL IN 运算符生成单个查询吗?
是的 - 这段代码在性能方面可以吗?
是(适用于小型列表) - 有没有更好的方法?
否(对于小型列表)
如果列表真的很大并且表相当小,您可能会获得更好的性能,将完整的表放入内存并与列表进行内存连接.
If the list is really big and the table is reasonably small you might get better performance bringing the complete table into memory and do an in memory join with the list.
这篇关于实体框架列表包含在 lambda的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:实体框架列表包含在 lambda


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04