In Entity Framework, you can improve performance by using ___________ for executing raw SQL queries.

  • DbSet
  • LINQ
  • Stored Procedures
  • Entity Framework Core
The correct option is "Stored Procedures." Entity Framework allows developers to execute raw SQL queries for performance optimization. Utilizing stored procedures can offer several benefits, including reduced network traffic, precompiled execution plans, and enhanced security through parameterized queries.
Add your answer
Loading...

Leave a comment

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