ASP.NET标识如何为自定义ApplicationUser添加必需属性?

时间:2013-11-06 16:57:18

标签: asp.net entity-framework asp.net-mvc-5 asp.net-identity

我正在尝试为ApplicationUser添加Required属性(ASP.NET Identity,MVC5)

这是一个简单的例子:

public class ApplicationUser : IdentityUser
{
    [Required]
    public string FirstName { get; set; }
}

该字段在数据库中创建,但最终 NULLABLE
我希望该字段为NOT NULL。

enter image description here

知道怎么解决这个问题吗?

5 个答案:

答案 0 :(得分:7)

每个层次结构表(TPH)映射是Entity Framework Code First中的默认值。这意味着如果在共享同一个表的类型层次结构中的所有类中不需要FirstName,则该列不能为非null。

如果您希望FirstName列不可为空,则可以选择不同的映射策略。如果您使用每种类型的表(TPT),那么您将拥有一个用于IdentityUser的表(默认为AspNetUsers)和另一个用于ApplicationUser的表。 由于FirstName现在对于ApplicationUser表是唯一的,因此它可以是不可为空的。

要使用TPT,您可以覆盖OnModelCreating方法,如下所示:

protected override void OnModelCreating(System.Data.Entity.DbModelBuilder modelBuilder)
{
    base.OnModelCreating(modelBuilder);
    modelBuilder.Entity<ApplicationUser>().ToTable("ApplicationUser");
}

答案 1 :(得分:0)

我尝试使用Required属性在IdentityUser中添加一个不可为空的字符串字段,并覆盖OnModelCreating方法,如下所示:

protected override void OnModelCreating(System.Data.Entity.DbModelBuilder modelBuilder)
{
    modelBuilder.Entity<ApplicationUser>().Property(x => x.FirstName).IsRequired();

    base.OnModelCreating(modelBuilder);
}

两者都没有成功。我不知道这是设计的,还是新ASP.NET身份中的错误。我也搜索了相关的bug但没有成功。

也许添加迁移可以帮助您实现目前的需求。

答案 2 :(得分:0)

通过合并答案herehere

找到了一种方法

最终解决方案对我来说真的违反直觉 您似乎需要为ApplicationUser明确拥有单独的表名 此外,您必须确保base.OnModelCreating(modelBuilder)被称为第一个
如果不这样做,该字段将永远不会遵循[Required]属性的NOT NULL方面。

以下是我使用的代码,最终使用了这个代码:

public class ApplicationUser : IdentityUser
{
    public string FirstName { get; set; }
}

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        base.OnModelCreating(modelBuilder);
        //modelBuilder.Entity<IdentityUser>().ToTable("Users"); // Won't work if the table name is the same.
        modelBuilder.Entity<ApplicationUser>().ToTable("Users")
            .Property(p => p.FirstName).IsRequired();
    }
    // etc.
}

这导致以下数据库结构:

enter image description here

答案 3 :(得分:0)

通过将以下行添加到configuration.cs文件中的seed方法,我能够使这样的字段不为空

context.Database.ExecuteSqlCommand("ALTER TABLE [AspNetUsers] ALTER COLUMN [FirstName] nvarchar(MAX) NOT NULL");

答案 4 :(得分:0)

这更像是对上面@ Number8的评论(此时不允许发表评论)。 我遇到了同样的问题,这可能与OP的问题有关。 Database-Update检查迁移的Configuration类(Configuration.cs)。如果您有种子方法,则需要在种子方法中为非null属性设置默认值(或者在模型中使它们可以为空)。