...
/Using Migrations in a Production Database
Using Migrations in a Production Database
Learn how to use SQL scripts for production databases.
Overview
Previously, we updated the database from the migration files using the dotnet ef database update
command. This practice is convenient in a development environment but not in a production environment. In a production environment, the recommended approach is to generate SQL scripts. Using SQL scripts allows us to inspect migrations before deploying them to a production database.
In this lesson, we’ll review some ways to generate SQL scripts.
Note: The commands in this lesson generate code and files. Through the ...