What is the difference between IEnumerable and IQueryable?
Ask by ICSM Computer
Updated 11 Jun 2025
IEnumerable<T>System.Collections.GenericExample:
Characteristics:
IQueryable<T>System.LinqExample:
Characteristics:
Key Differences
IEnumerable<T>IQueryable<T>System.Collections.GenericSystem.LinqSummary
IEnumerable<T>when working with in-memory collections.IQueryable<T>when working with databases or external data sources to avoid pulling too much data into memory.