InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Deferred Execution in EF? |
|
Answer» DEFERRED Execution refers to the process of delaying the evaluation of an expression until its realized value is actually REQUIRED. As a result, performance is GREATLY improved since unnecessary execution is avoided. Queries are deferred until the QUERY variable or query object is iterated over a LOOP. |
|