To improve performance, LINQ to Entities utilizes ________ to avoid retrieving all columns of a table.

  • Deferred Execution
  • Eager Loading
  • Lazy Loading
  • Projection
Projection - LINQ to Entities allows for projecting only the necessary columns from a table, which can significantly enhance performance by avoiding the retrieval of unnecessary data. Lazy Loading, Eager Loading, and Deferred Execution are related concepts but do not directly address the optimization of column retrieval in LINQ to Entities.
Add your answer
Loading...

Leave a comment

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