You've been handed an ASP.NET Core application where the database schema frequently changes. Which feature of Entity Framework Core would be most useful to keep the database in sync with the application model?

  • Code-First Migrations
  • Model-First Approach
  • Database-First Approach
  • NoSQL Database
Code-First Migrations in Entity Framework Core allows you to automatically create and update the database schema based on changes to your application's model. This feature is ideal for scenarios where the database schema evolves frequently to match the application's needs.
Add your answer
Loading...

Leave a comment

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