Wednesday 13 January 2021

IEnumerable vs IQueryable

 

The two interfaces IQueryable and IEnumerable seem almost interchangeable. Here I discuss one of the key differences, and how it can have a serious effect on performance.

Topics include:

  • C#
  • IQueryable<T>
  • IEnumerable<T>
  • Extension methods
  • Entity Framework
  • SQL
  • Performance
  • Deferred execution
Related videos:

No comments:

Post a Comment

The State Pattern

  How many developers does it take to change a lightbulb? With the State pattern, not very many. Topics include: The State Pattern Design Pa...