Entity Framework Core 2.1, rename table using code-first migrations without dropping and creating new table
问题 I'm using netcoreapp 2.1 with EF Core 2.1 and updating my database with data migrations and have come into a problem with renaming tables. My main issue here is a table (and later potentially columns) may be renamed multiple times with data and I want to be able to rename them while keeping this data intact but from what I've read it seems these migrations only seem concerned with keeping the schema up to date. This issue is similar to Change or rename a column name without losing data with