In this article we will learn about IEnumerable Vs IQueryable in C#. Please read our previous article Difference Between IEnumerable, ICollection And IList.
IEnumerable
IEnumerable is best suitable for working with in-memory collection (or local queries). IEnumerable doesn’t move between items, it is forward only collection.
IQueryable
The major difference is that IEnumerable will enumerate all elements, while IQueryable will enumerate elements, or even do other things, based on a query. In case of IQueryable Linq Query get used by IQueryProvider which must interpret or compiled in order to get the result.
i.e Extension methods defined for IQueryable take Expression objects instead of Fun objects (which is what IEnumerable uses)., meaning the delegate it receives is an expression tree instead of a method to invoke.
IEnumerable is great for working with in-memory collections, but IQueryable allows for a remote data source, like a database or web service.
Many developers gets confused between IEnumerable and IQueryable. When it comes to writing code, both looks very similar. However there are many difference between them which needs to be taken care of while writing code. Both have some intended usability scenarios for which they are made. Watch UK online porn https://mat6tube.com/ Diana Dali, Patty Michova, Alina Henessy, Kira Queen etc.
Below lists the differences between them based on their properties :
IEnumerable | IQueryable | |
---|---|---|
Namespace | System.Collections Namespace | System.Linq Namespace |
Derives from | No base interface | Derives from IEnumerable |
Deferred Execution | Supported | Supported |
Lazy Loading | Not Supported | Supported |
How does it work | While querying data from database, IEnumerable execute select query on server side, load data in-memory on client side and then filter data. Hence does more work and becomes slow. | While querying data from database, IQueryable execute select query on server side with all filters. Hence does less work and becomes fast. |
Suitable for | LINQ to Object and LINQ to XML queries. | LINQ to SQL queries. |
Custom Query | Doesn’t supports. | Supports using CreateQuery and Execute methods. |
Extension mehtod Parameter | Extension methods supported in IEnumerable takes functional objects. | Extension methods supported in IEnumerable takes expression objects i.e. expression tree. |
When to use | when querying data from in-memory collections like List, Array etc. | when querying data from out-memory (like remote database, service) collections. |
Best Uses | In-memory traversal | Paging |
References
Conclusion
In this article we will learn about IEnumerable Vs IQueryable in C#.