You want to use a database with your ASP.NET Core web application. Which ORM (Object-Relational Mapping) framework is natively supported by ASP.NET Core for this purpose?
- Entity Framework Core
- Hibernate
- SQLAlchemy
- Doctrine
Entity Framework Core (EF Core) is the ORM framework natively supported by ASP.NET Core. It simplifies database access by allowing developers to work with databases using C# objects, making it a popular choice for database interaction in ASP.NET Core applications.
Loading...
Related Quiz
- What is the primary purpose of Razor Layout Views in ASP.NET Core?
- Your team is implementing a Continuous Integration (CI) pipeline for an ASP.NET Core application. What is the main reason for integrating automated tests into this CI pipeline?
- You've been asked to implement email confirmation for new users. Which steps would be essential in implementing this feature using ASP.NET Core Identity?
- While setting up an ASP.NET Core development environment on macOS, what would be the preferred installation method for the .NET SDK?
- You're building an application where some static files need to be accessible only for authenticated users. How might you achieve this in an ASP.NET Core application?