Click here to Skip to main content
15,880,956 members
Articles / Programming Languages / C#

IEnumerable vs IQueryable

Rate me:
Please Sign up or sign in to vote.
4.90/5 (35 votes)
29 Apr 2014CPOL2 min read 102K   32   13
IEnumerable vs IQueryable?

Both these interfaces are for .NET collections, so if you are new to .NET collection please first see this video before moving ahead with the article.

The first important point to remember is “IQueryable” interface inherits from “IEnumerable”, so whatever “IEnumerable” can do, “IQueryable” can also do.

Image 1

There are many differences but let us discuss about the one big difference which makes the biggest difference. “IQueryable” interface is useful when your collection is loaded using LINQ or Entity framework and you want to apply filter on the collection.

Consider the below simple code which uses “IEnumerable” with entity framework. It’s using a “where” filter to get records whose “EmpId” is “2”.

XML
IEnumerable<Employee> emp = ent.Employees;

IEnumerable<Employee> temp = emp.Where(x => x.Empid == 2).ToList<Employee>();

 

<empentities ent="new"></empentities>

This where filter is executed on the client side where the “IEnumerable” code is. In other words, all the data is fetched from the database and then at the client it scans and gets the record with “EmpId” is “2”.

Image 2

But now see the below code we have changed “IEnumerable” to “IQueryable”.

 

XML
IQueryable<Employee> emp = ent.Employees;

IEnumerable<Employee> temp = emp.Where(x => x.Empid == 2).ToList<Employee>();

 

In this case, the filter is applied on the database using the “SQL” query. So the client sends a request and on the server side, a select query is fired on the database and only necessary data is returned.

Image 3

So the difference between “IQueryable” and “IEnumerable” is about where the filter logic is executed. One executes on the client side and the other executes on the database.

So if you are working with only in-memory data collection “IEnumerable” is a good choice but if you want to query data collection which is connected with database, “IQueryable” is a better choice as it reduces network traffic and uses the power of SQL language.

Below is a nice FB video which demonstrates this blog in a more visual and practical manner.

 

Image 4

For further reading do watch the below interview preparation videos and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
QuestionNice Pin
Manoj Kumar Choubey8-Sep-19 21:46
professionalManoj Kumar Choubey8-Sep-19 21:46 
Nice 

Manoj kumar choubey
Sr. Software Developer

QuestionDoes the declaring IQueryable as IEnumerable really change the behavior? Pin
Joe Bakerr7-Dec-17 5:45
Joe Bakerr7-Dec-17 5:45 
GeneralMy vote of 5 Pin
Carmelo Campione6-Jan-16 12:27
Carmelo Campione6-Jan-16 12:27 
QuestionIQueryable vs IEnumerable Pin
nasirkhayam4-Jun-15 19:56
nasirkhayam4-Jun-15 19:56 
Generalmy vote 5.. it really helpful Pin
ravikirand12314-Feb-15 20:04
ravikirand12314-Feb-15 20:04 
GeneralThanks. It was really helpful. Pin
RonakC26-Jan-15 2:15
RonakC26-Jan-15 2:15 
GeneralMy vote of 4.5 Pin
Malhotra Sameer18-Jan-15 0:05
professionalMalhotra Sameer18-Jan-15 0:05 
GeneralMy vote 5 Pin
Amey K Bhatkar29-Apr-14 17:07
Amey K Bhatkar29-Apr-14 17:07 
GeneralMy vote of 3 Pin
michmela4429-Apr-14 6:16
michmela4429-Apr-14 6:16 
GeneralRe: My vote of 3 Pin
Shivprasad koirala29-Apr-14 6:27
Shivprasad koirala29-Apr-14 6:27 
GeneralRe: My vote of 3 Pin
michmela4429-Apr-14 6:34
michmela4429-Apr-14 6:34 
GeneralRe: My vote of 3 Pin
Shivprasad koirala29-Apr-14 7:32
Shivprasad koirala29-Apr-14 7:32 
GeneralMy vote of 5 Pin
Thiago Romam29-Apr-14 4:56
professionalThiago Romam29-Apr-14 4:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.