Nelnet Interview Question

What’s the difference between IEnumberable and IQueryable?

Interview Answer

Anonymous

Jan 9, 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.