There is already an object named 'AspNetRoles' in the database

前端 未结 6 1793
南笙
南笙 2020-11-30 23:28

Some time ago, I created a ASP.NET MVC 5 website with the Identity 1.0 version, and i created the Identity tables with this project. Now i have to make other website using t

相关标签:
6条回答
  • 2020-11-30 23:37

    I faced the same bug as below. Then I fixed it as below: (.NET Core / EF Core)

    1. Check current databases in your project:

      dotnet ef migrations list
      
    2. If the newest is what you've added, then remove it:

      dotnet ef migrations remove
      
    3. Guarantee outputs of this database must be deteled in source code:

      .cs/.Designer.cs files

    4. Now it is fine. Try to re-add:

      dotnet ef migrations add [new_dbo_name]
      
    5. Finally, try to update again, in arrangement base on migration list:

      dotnet ef database update [First]
      dotnet ef database update [Second]
      ...
      dotnet ef database update [new_dbo_name]
      

    Hope it is helpful for you.

    0 讨论(0)
  • 2020-11-30 23:40

    For me, the problem couldn't be fixed by adding an empty migration. My problem was that the __EFMigrationsHistory table had been manually cleared. As a consequence, the context.Database.Migrate() method thought it had to apply all the missing migrations (missing entries in __EFMigrationsHistory). Simply add all the missing migrations in the db table and it should work again.

    0 讨论(0)
  • 2020-11-30 23:44
    Add-Migration InitialMigrations -IgnoreChanges
    

    This should generate a blank "InitialMigration" file. Now, add any desired changes to the class you want. Once changes are added, run the update command again:

    update-database -verbose
    

    Now the automatic migration will be applied and the table will be altered with your changes.

    Edit: Here is a solution to migrate identity 1 to 2 Upgrading from ASP.NET.Identity 1.0 to 2.0 Use this manual migration

    public override void Up()
        {
            RenameColumn(table: "dbo.AspNetUserClaims", name: "User_Id", newName: "UserId");
            RenameIndex(table: "dbo.AspNetUserClaims", name: "IX_User_Id", newName: "IX_UserId");
            DropPrimaryKey("dbo.AspNetUserLogins");
            AddColumn("dbo.AspNetUsers", "Email", c => c.String(maxLength: 256));
            AddColumn("dbo.AspNetUsers", "EmailConfirmed", c => c.Boolean(nullable: false));
            AddColumn("dbo.AspNetUsers", "PhoneNumber", c => c.String()); 
            AddColumn("dbo.AspNetUsers", "PhoneNumberConfirmed", c => c.Boolean(nullable: false));
            AddColumn("dbo.AspNetUsers", "TwoFactorEnabled", c => c.Boolean(nullable: false));
            AddColumn("dbo.AspNetUsers", "LockoutEndDateUtc", c => c.DateTime());
            AddColumn("dbo.AspNetUsers", "LockoutEnabled", c => c.Boolean(nullable: false));
            AddColumn("dbo.AspNetUsers", "AccessFailedCount", c => c.Int(nullable: false));
            AlterColumn("dbo.AspNetUsers", "UserName", c => c.String(nullable: false, maxLength: 256));
            AlterColumn("dbo.AspNetUsers", "FirstName", c => c.String(nullable: false));
            AlterColumn("dbo.AspNetUsers", "LastName", c => c.String(nullable: false));
            AddColumn("dbo.AspNetUsers", "CreatedDateTime", c => c.DateTime(nullable: false));
            AlterColumn("dbo.AspNetRoles", "Name", c => c.String(nullable: false, maxLength: 256));
            AddPrimaryKey("dbo.AspNetUserLogins", new[] { "LoginProvider", "ProviderKey", "UserId" });
            CreateIndex("dbo.AspNetUsers", "UserName", unique: true, name: "UserNameIndex");
            CreateIndex("dbo.AspNetRoles", "Name", unique: true, name: "RoleNameIndex");
            DropColumn("dbo.AspNetUsers", "Discriminator");
        } 
    
    0 讨论(0)
  • 2020-11-30 23:51

    In the "appsettings.json" file change the name of database

    "ConnectionStrings": {
        "DefaultConnection": "Server=DESKTOP-S0S1I;Database=New_name_here;Trusted_Connection=True;"
    

    and then

    add-migration 
    update-database
    

    It works.

    0 讨论(0)
  • 2020-11-30 23:52

    for that first we have to remove migration that we newly migrated dotnet ef migrations remove -s ..\InvoiceManagement\

    then delete *.Designer.cs file in the migration folder

    finally dotnet ef database update -s ..\InvoiceManagement\ -s mean that startup project(webApi) remember that this code shoud be use in DBcontext file contain folder path. this code use in vscode for webapi.

    0 讨论(0)
  • 2020-11-30 23:57

    While you can (since EF6) use migrations in two separate projects for the same database, there can't be any overlap. The way migrations work is through a dbo._MigrationHistory table that stores the context that generated the migration and the model state of your application, which includes the Identity models.

    When you try to connect your second application, it finds no previous migrations, and thus needs to generate it's initial migration, which will include tables for the Identity models, which are in its context as well. That's where your problem is.

    For the purposes of Identity, you need to choose one project to make the master. This one will utilize a standard IdentityDbContext where the Identity models will be migrated.

    The other project will need to be made a slave, at least in terms of utilizing Identity. So, you will need to interact with at least two contexts in this application. One will be a subclass of IdentityDbContext, but treated as database-first:

    public class MyIdentityContext : IdentityDbContext<ApplicationUser>
    {
        public MyIdentityContext()
            : base("ConnectionStringNameForYourSharedDB")
        {
            Database.SetInitializer<MyIdentityContext>(null);
        }
    }
    

    The other context will be just a regular DbContext subclass that will be migrated as normal. You'll need to repeat this for any other project that may need access to the same Identity information from the same database. Also, because of the repetitious code this will lead to (and the fact that your ApplicationUser class will need to be shared) you should move this code into a class library that each project can reference.

    0 讨论(0)
提交回复
热议问题