Which Entity Framework Core feature allows developers to apply changes in the application model to the database schema?
- Migrations
- Seeding
- Scaffolding
- Query Optimization
Entity Framework Core migrations allow developers to apply changes in the application model to the database schema. Migrations are scripts that capture changes to the database schema over time, making it easy to update the database as the application evolves without losing data.
Loading...
Related Quiz
- What do you use in Entity Framework Core to represent and configure the database tables and relationships?
- How can you define the duration for which a user remains locked out after too many failed login attempts in ASP.NET Core Identity?
- In the context of Razor views, which directive would you use in _ViewImports.cshtml to define a shared model type across views?
- The property that determines the maximum time span a user can remain locked out after failed attempts is called _________.
- What purpose do Razor Tag Helpers serve in ASP.NET Core?