I updated my data model by removing a column from a table to another, but I hava data in this column
To do that, I started by adding the new column in the new table and its done.
Now I want to migrate column data from the old table to the new one, I'm thinking to do it in the Up(MigrationBuilder migrationBuilder)
method but I don't know the right approach.
So, I'm asking if anyone knows from where I can start.
Thank you all!