What is the difference between IQueryable and IEnumerable?
IQueryable
IEnumerable
See also What\'s the difference between IQueryable and I
In simple words other major difference is that IEnumerable execute select query on server side, load data in-memory on client side and then filter data while IQueryable execute select query on server side with all filters.