What’s the difference between IEnumberable and IQueryable?
Anónimo
IQueryable inherits from IEnumerable, so anything IEnumerable can do, IQueryable can, too. IEnumerable simply iterates through a collection whereas IQueryable allows more data manipulation.