尝试在ASP.NET Identity 2.0中更改表名

时间:2014-07-15 02:34:34

标签: c# entity-framework asp.net-identity-2

我想更改ASP.NET Identity 2.0使用的表的名称。我见过各种类似的问题,但没有解决我的问题。例如这种解决方案: http://www.goatly.net/customizing-table-names-for-identitydbcontextwithcustomuser-data-contexts 似乎依赖于Code First(?)。无论如何,实现OnModelCreating对我没有任何帮助。我基本上将AspNetUsers和类似的表重命名为我自己的名字,并希望能够使用它们。我有一个我想要使用的现有EF上下文(MyContext),所以我将其修改为派生自IdentityDbContext(编辑t4模板),然后在Startup.Auth中我有:

        UserManagerFactory = () =>
        {
            var context = new MyContext();

            Database.SetInitializer<MyContext>(new IdentityDbInitializer());

            var userStore = new UserStore<IdentityUser>(context){
                DisposeContext = true
            };

            return new UserManager<IdentityUser>(userStore);
        };

但是当我尝试登录时出现问题,我得到了&#34;无法联系服务器&#34;。我想这是因为我的UserStore无法知道我的上下文中的User表。我希望这是OnModelCreating代码可以做的,但我对此很朦胧。我想UserStore仍然在寻找一个&#34; AspNetUsers&#34;表,虽然我不知道这些名字的来源。我对于为我的上下文修改t4模板感到不安 - 这是我应该从IdentityDbContext派生的方式吗?

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:19)

接下来几步:

  • 安装NuGet包:Microsoft.AspNet.Identity.EntityFramework
  • connection string添加到您的web.config / app.config

现在您必须定义自定义Database Context

public class MyContext : IdentityDbContext
{
    public MyContext()
        : base(<connection string name>)
    {

    }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        base.OnModelCreating(modelBuilder);

        modelBuilder.Entity<IdentityUser>()
            .ToTable("Users");

        modelBuilder.Entity<IdentityRole>()
            .ToTable("Roles");

        modelBuilder.Entity<IdentityUserRole>()
            .ToTable("UserRoles");

        modelBuilder.Entity<IdentityUserClaim>()
            .ToTable("UserClaims");

        modelBuilder.Entity<IdentityUserLogin>()
            .ToTable("UserLogins");
    }
}

如您所见,我已使用DbModelBuilder将所有实体映射到新表。

  • 打开NuGet程序包管理器控制台
  • 执行命令Enable-Migrations

它将使用配置文件Migrations创建文件夹Configuration.cs

看起来应该是这样的:

internal sealed class Configuration : DbMigrationsConfiguration<ConsoleApplication1.Models.MyContext>
{
    public Configuration()
    {
        AutomaticMigrationsEnabled = false;
    }

    protected override void Seed(ConsoleApplication1.Models.MyContext context)
    {

    }
}

在构造函数中将属性AutomaticMigrationsEnabled更改为true

  • 打开NuGet程序包管理器控制台
  • 执行命令Update-Database

它应该运行脚本来创建新表。

您可以自定义实体(和ID),为每个定义的接口创建自定义类。

public class MyUser : IdentityUser<string, MyUserLogin, MyUserRole, MyUserClaim>
{
}

由于您正在使用Owin,因此您可以定义您的UserStore:

public class MyUserStore: UserStore<MyUser, MyRole, string, MyUserLogin, MyUserRole, MyUserClaim>
{
    public MyUserStore(MyContext context)
        : base(context)
    {
    }
}

和您的UserManager实施:

public class ApplicationUserManager : UserManager<ASPNETIdentity2.Models.MyUser, string>
{
    public ApplicationUserManager(IUserStore<ASPNETIdentity2.Models.MyUser, string> store)
        : base(store)
    {

    }

    public static ApplicationUserManager Create(IdentityFactoryOptions<ApplicationUserManager> options, IOwinContext context)
    {
        var manager = new ApplicationUserManager(new MyUserStore(context.Get<MyContext>()));

        manager.UserValidator = new UserValidator<MyUser, string>(manager)
        {
            AllowOnlyAlphanumericUserNames = false,
            RequireUniqueEmail = true
        };

        manager.PasswordValidator = new PasswordValidator()
        {
            RequiredLength = 5,
            RequireNonLetterOrDigit = false,     // true
            // RequireDigit = true,
            RequireLowercase = false,
            RequireUppercase = false,
        };

        return (manager);
    }
}

你的Owin.Startup应该是这样的:

public class Startup
{
    public void Configuration(IAppBuilder app)
    {
        app.CreatePerOwinContext(MyContext.Create);
        app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
    }
}

如果您想查看自定义实现,可以使用ASP.NET MVC上的简单工作解决方案检查我的GitHub repository

更新:

该解决方案中的另一个项目设置最少;基本上你只需要定义你的上下文( IdentityDbContext ),如果你只想重命名你的表。

可以找到项目here

答案 1 :(得分:0)

身份2与实体框架假定代码优先。这个项目似乎做我需要的: https://github.com/cbfrank/AspNet.Identity.EntityFramework