IQueryable vs. IEnumerable in the repository patte

2019-01-23 14:47发布

I have read some articles that state that IEnumerable used to mimic stored procedures or restrict your database. Lost lazy loading ability on the external provider.

Where as IQueryable to give developers more flexibility. Lazy loading is there.

In terms of performance, both consume a significant amount of performance .. so which one is more preferable?

3条回答
何必那么认真
2楼-- · 2019-01-23 15:04

From the perspective of a Repository Pattern, you can think of it this way:

  1. Use an eager loading IEnumerable when you want to pass an entire list to the client in one go. They can still add linq clauses, but the client does not benefit from deferred execution.

  2. Use a lazy loading IQueryable when you want to extend deferred querying capabilities to the client, by allowing the client to add their own linq clauses. This defers execution of the entire query until output is required.

See Also
Deferred execution and eager evaluation

查看更多
forever°为你锁心
3楼-- · 2019-01-23 15:10

IEnumerable vs IQueryable

IQueryable is best for server side data, whereas IEnumerable is best for arrays/lists that uses on client side.

查看更多
该账号已被封号
4楼-- · 2019-01-23 15:12

The main difference between “IEnumerable” and “IQueryable” is about where the filter logic is executed. One executes on the client side(in memory) and the other executes on the database.

So when querying data from in-memory collections like List, Array etc you should use IEnumerable.

On the other hand when querying data from out-memory (like remote database, service) collections you should use IQueryable.

查看更多
登录 后发表回答