adspace
What are the deferred execution and the immediate execution in linq?
Answer Posted / Pooja Bangari
Deferred execution means that the query is not executed until its results are actually needed. This allows for more efficient use of resources. Immediate execution, on the other hand, means that the query is executed as soon as it's written. The difference between the two is a key feature of LINQ and can significantly affect performance.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers