One of my favorite features in Visual Studio 2015 is the support for debugging lambda expressions. This is a big productivity improvement for developers who spend a lot of time writing LINQ queries. Till Visual Studio 2013, if we tried… Read More ›
LINQ
Deferred Execution vs Immediate Execution in LINQ
LINQ provides two different behaviors of Query Execution – Deferred Execution Immediate Execution Deferred/Lazy Operators Immediate/Greedy Operators Query is not executed at the point of its declaration. Query is executed at the point of its declaration. Projection Operator – Select,… Read More ›