Is it possible to query, alter, and update data in EF Core during a migration up and also to reverse that in migration down?
We want to modify a table in our database by adding a column and then updating all of the records in that table. For simplification, we are adding ValueB as the new column:
Is it possible to query, alter, and update data in EF Core during a migration up and also to reverse that in migration down?
We want to modify a table in our database by adding a column and then updating all of the records in that table. For simplification, we are adding ValueB as the new column:
Is it possible to query, alter, and update data in EF Core during a migration up and also to reverse that in migration down?
We want to modify a table in our database by adding a column and then updating all of the records in that table. For simplification, we are adding ValueB as the new column: