In LINQ, what is deferred execution?

  • Execution of LINQ queries asynchronously
  • Execution of LINQ queries at the point where the query is defined
  • Execution of LINQ queries at the point where the query is iterated or evaluated
  • Execution of LINQ queries synchronously
Deferred execution in LINQ refers to postponing the execution of the query until the query result is actually enumerated or iterated over. This allows for optimizations and better performance, as the query can be composed and optimized before execution.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *