Deferred execution means that LINQ queries are not executed immediately, but rather, they are executed when the query results are ___________.

  • Available
  • Fetched
  • Enumerated
  • Requested
Deferred execution in LINQ means that the query is not executed until the results are requested or enumerated. This allows for more flexibility and optimization in querying large datasets or databases. Thus, the correct option is "Enumerated."
Add your answer
Loading...

Leave a comment

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