在Identity成员资格中添加自定义属性

时间:2014-01-19 00:36:34

标签: asp.net-identity

我正在关注如何将属性添加到现有ApplicationUser类的MSDN tutorial。我将其命名为AccountCode并使用Add-Migration AccountCode然后使用Update-Database我看到它进入我的数据库。

但是,我正在尝试更新属性,使其不可为空并且是IdentityColumn。在我的帐户代码迁移文件中,我将Up方法中的代码修改为:

public override void Up()
    {
        AddColumn("dbo.AspNetUsers", 
                  "AccountCode", c => c.Int(identity: true, nullable: false));
    }

当我运行Update-Database时,它表示我的迁移没有检测到任何变化。

我用Google搜索了十几次,找不到任何东西。

我做错了什么?

0 个答案:

没有答案