While setting up your ASP.NET Core project, you wish to use a database to store and manage data. Which Microsoft tool or library will help you interact with the database without writing extensive SQL code?

  • ASP.NET Core Identity
  • Entity Framework Core
  • ASP.NET Core MVC
  • .NET Core Runtime
Entity Framework Core (EF Core) is the Microsoft library that allows you to interact with databases in an ASP.NET Core project without the need to write extensive SQL code. It provides a high-level, object-oriented approach to database operations.
Add your answer
Loading...

Leave a comment

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