Home > Mobile >  Entity Framework Core 2.1, rename table using code-first migrations without dropping and creating ne
Entity Framework Core 2.1, rename table using code-first migrations without dropping and creating ne

Time:12-09

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 Entity Framework Core 2.0 but as my process is automated I need to be able to do this using the migration itself on the command line with dotnet.exe.

To do this I am passing the argument below to dotnet.exe, building the solution, getting the DB context from the DLL and then running the migration with the lines below that.

ef migrations add "someMigrationName"

...and to update database

var migrator = dbContext.Database.GetService<IMigrator>();
migrator.Migrate();

As an example, if a table named "Courases" starts collecting data I need to be able to rename it "Courses" without it affecting the data however currently the below is the generated Up function in the migration.

protected override void Up(MigrationBuilder migrationBuilder)
    {
        migrationBuilder.DropTable(
            name: "Courases");

        migrationBuilder.CreateTable(
            name: "Courses",
            columns: table => new
            {
                Id = table.Column<Guid>(nullable: false),
                ConcurrencyCheck = table.Column<byte[]>(nullable: true)
            },
            constraints: table =>
            {
                table.PrimaryKey("PK_Courses", x => x.Id);
            });

    }

From what I've read there seems to be no way to generate a migration with tables renamed rather than dropped and recreated but this seems crazy, is there a way of doing this/is there a flag I can pass to dotnet.exe that I've missed?

CodePudding user response:

Check out https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.migrations.migrationbuilder.renametable?view=efcore-2.1

You can just call migrationBuilder.RenameTable("Old", null, "New");

CodePudding user response:

I was encountering the same issue in EF Core 5.0 with the dotnet ef migrations add command. It wanted to drop tables and recreate them, meaning I would lose all my data.

I was trying to add a new table and rename a few of them. It didn't like that apparently and I split it out in 2 migrations. Firstly I added the new table and then I renamed the other tables.

  • Related