Introduction to Migrations

Learn how to create migrations and update a database with them.

Overview

In real-world projects, data models get updated as features get implemented. New entities or properties get added and removed. Migrations provide a means to update the database schema and keep it in sync with the model. This approach is known as the Code First workflow because the EF Core model is the source of truth.

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy