繁体   English   中英

扩展asp.net身份用户导致数据库错误

[英]extend asp.net identity user cause database error

我试图使用“名称”属性扩展asp.net身份用户,因此我遵循了本文中的说明如何扩展User.Identity的可用属性

但是,在执行此操作并尝试登录后,出现此错误“自创建数据库以来,支持'ApplicationDbContext'上下文的模型已更改。请考虑使用Code First Migrations更新数据库”

我可以解决此问题,还是只能在首次创建数据库之前扩展asp.net ueser身份?

Based on Asp.Net template database will generate the bellow structure: 

在此处输入图片说明

    In order to extend asp.net identity user and keep the things simple, please update IdentityModels.cs with following code: 

//CODE

    using System.Data.Entity;
    using System.Security.Claims;
    using System.Threading.Tasks;
    using Microsoft.AspNet.Identity;
    using Microsoft.AspNet.Identity.EntityFramework;
    using System.Data.Entity.Migrations;

namespace WebApplication.Models
{
    // You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
    public class ApplicationUser : IdentityUser
    {
        public string Name { get; set; }
        public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
        {
            // Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
            var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
            // Add custom user claims here
            return userIdentity;
        }
    }

    public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
    {
        public ApplicationDbContext()
            : base("DefaultConnection", throwIfV1Schema: false)
        {
            Database.SetInitializer(new MigrateDatabaseToLatestVersion<ApplicationDbContext, ApplicationDbContextConfiguration>());
        }

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            base.OnModelCreating(modelBuilder);
            modelBuilder.Entity<IdentityRole>().ToTable("AspNetRoles");
            modelBuilder.Entity<IdentityUserRole>().ToTable("AspNetUserRoles");
            modelBuilder.Entity<IdentityUserLogin>().ToTable("AspNetUserLogins");
            modelBuilder.Entity<IdentityUserClaim>().ToTable("AspNetUserClaims");
            modelBuilder.Entity<ApplicationUser>().ToTable("AspNetUsers");
        }


        public static ApplicationDbContext Create()
        {
            return new ApplicationDbContext();
        }
    }



    internal sealed class ApplicationDbContextConfiguration : DbMigrationsConfiguration<ApplicationDbContext>
    {
        public ApplicationDbContextConfiguration()
        {

            ContextKey = "WebApplication.Models.ApplicationDbContext"; //Retrieved from the database table dbo.__MigrationHistory

#if DEBUG
            AutomaticMigrationsEnabled = true;
            AutomaticMigrationDataLossAllowed = true;
#else
                AutomaticMigrationsEnabled = false;
                AutomaticMigrationDataLossAllowed = false;

#endif
        }

        protected override void Seed(ApplicationDbContext context)
        {
            base.Seed(context);
        }
    }
} 


The output is: 

在此处输入图片说明

PS: You can rename default names for asp.net generated tables, personally I prefer to remove AspNet suffix 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM