简体   繁体   中英

IQueryable vs. IEnumerable in the repository pattern , lazy loading

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?

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

IEnumerable vs IQueryable

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM