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
基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- rabbitmq 的 REST API 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01