Your application requires efficient loading of related data when querying a database using LINQ to Entities. Which method or approach would you employ to achieve this?

  • Eager Loading
  • Lazy Loading
  • Explicit Loading
  • Deferred Loading
The correct option is "Eager Loading." In this approach, related data is loaded along with the primary entities, reducing subsequent database trips and enhancing performance in querying related data.
Add your answer
Loading...

Leave a comment

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