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."
Loading...
Related Quiz
- When using the Repeater control, what is responsible for defining the layout of the repeated items?
- Entity Framework supports different query execution modes, such as _______ and _______.
- Data binding in WinForms allows you to establish a link between a data source and a ___________ control.
- To improve performance, you can use ___________ in LINQ to Entities to reduce the amount of data retrieved from the database.
- The ___________ class is responsible for managing the database schema in LINQ to Entities.