What is difference between IEnumrable and IQueryable in c#

 In entity framework if you use filter to search the records in table like employee table

then 

IEnumrable  - Get the all result from query and then  filter it at client side.

IQueryable - It get the filters record from if we using IQuerable and it is very efficent.


Comments