Nelnet interview question

What’s the difference between IEnumberable and IQueryable?

Interview Answer

Anonymous

9 Jan 2020

IQueryable inherits from IEnumerable, so anything IEnumerable can do, IQueryable can, too. IEnumerable simply iterates through a collection whereas IQueryable allows more data manipulation.