Migrations in Entity Framework Code-First are used to keep the database schema _________ with the application's data model.

  • Consistent
  • Independent
  • Isolated
  • Synchronized
Migrations in Entity Framework Code-First ensure that the database schema remains consistent with the application's data model as it evolves over time. They allow you to update the database schema automatically based on changes to your entity classes.
Add your answer
Loading...

Leave a comment

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