Related resources for Deferred Execution
  • Understanding Collection Types in C#1/9/2024 4:35:29 AM. Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnece
  • Deferred and immediate executions in LINQ10/26/2011 6:56:58 PM. In this article we are going to have a look at how or rather ‘when’ a LINQ query is executed. One execution type of a LINQ query is called deferred execution. This is because the results of the query are evaluated only when required. We will directly dive into code to see what we mean by deferred execution.