In the Code-First approach, the ________ feature enables automatic updates to the database schema based on model changes.

  • Migration
  • Reverse Engineering
  • Scaffolding
  • Seeding
In the Code-First approach, migration feature enables automatic updates to the database schema based on model changes. It allows developers to define the model classes first and then generate the database schema based on those classes. Migration helps in maintaining database schema changes without losing data. It's a powerful feature in Entity Framework for managing database changes effectively.
Add your answer
Loading...

Leave a comment

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