Migrations are a system for updating the database schema and keeping track of ongoing changes to it. In fact, after creating the first migration, you’ll see a table named EFMigrationsHistory is created. This system allows us, in case of an error, to revert the changes. In EF Core, you can perform this operation by installing […]