Returning IEnumerablelt;Tgt; vs. IQueryablelt;Tgt;(返回 IEnumerablelt;Tgt;与 IQueryablelt;Tgt;)
问题描述
返回 IQueryable<T> 与 IEnumerable<T> 有什么区别,什么时候应该优先选择另一个?
What is the difference between returning IQueryable<T> vs. IEnumerable<T>, when should one be preferred over the other?
IQueryable<Customer> custs = from c in db.Customers
where c.City == "<City>"
select c;
IEnumerable<Customer> custs = from c in db.Customers
where c.City == "<City>"
select c;
两者都会被推迟执行,什么时候应该优先于另一个?
Will both be deferred execution and when should one be preferred over the other?
推荐答案
是的,两者都会给你 延迟执行.
Yes, both will give you deferred execution.
区别在于 IQueryable<T> 是允许 LINQ-to-SQL(LINQ.-to-anything)工作的接口.因此,如果您在 IQueryable<T>,如果可能,该查询将在数据库中执行.
The difference is that IQueryable<T> is the interface that allows LINQ-to-SQL (LINQ.-to-anything really) to work. So if you further refine your query on an IQueryable<T>, that query will be executed in the database, if possible.
对于 IEnumerable<T> 情况下,它将是 LINQ-to-object,这意味着与原始查询匹配的所有对象都必须从数据库加载到内存中.
For the IEnumerable<T> case, it will be LINQ-to-object, meaning that all objects matching the original query will have to be loaded into memory from the database.
在代码中:
IQueryable<Customer> custs = ...;
// Later on...
var goldCustomers = custs.Where(c => c.IsGold);
该代码将执行 SQL 以仅选择黄金客户.另一方面,下面的代码会在数据库中执行原始查询,然后过滤掉内存中的非黄金客户:
That code will execute SQL to only select gold customers. The following code, on the other hand, will execute the original query in the database, then filtering out the non-gold customers in the memory:
IEnumerable<Customer> custs = ...;
// Later on...
var goldCustomers = custs.Where(c => c.IsGold);
这是一个非常重要的区别,正在处理 IQueryable<T> 在很多情况下可以避免从数据库返回太多行.另一个主要示例是进行分页:如果您使用 Take 和 跳过 在 IQueryable,你只会得到请求的行数;在 IEnumerable<T> 上执行此操作将导致您的所有行都加载到内存中.
This is quite an important difference, and working on IQueryable<T> can in many cases save you from returning too many rows from the database. Another prime example is doing paging: If you use Take and Skip on IQueryable, you will only get the number of rows requested; doing that on an IEnumerable<T> will cause all of your rows to be loaded in memory.
这篇关于返回 IEnumerable<T>与 IQueryable<T>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:返回 IEnumerable<T>与 IQueryable<T>
基础教程推荐
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
