Невозможно вставить NULL в столбец 'UserId' - PullRequest
0 голосов
/ 14 марта 2020

Я использую Entity Framework и эту модель:

public class User
{
    [Key]
    public int id { get; set; }

    [MaxLength(150)]
    public string first_name_1 { get; set; }

    public int? location_id { get; set; }

    [ForeignKey("location_id")]
    public virtual Location location  { get; set; }  

    [MaxLength(50)]
    public string telephone_no_1 { get; set; }

    public string UserId { get; set; }

    [ForeignKey("UserId")]
    public virtual ApplicationUser applicationuser { get; set; }
}

Это контекст, который я использую

public class CustomContext: DbContext
{
    public RegistryContext() : base("name=" + ConfigurationManager.AppSettings["ContextName"])
    {
        Database.SetInitializer(new MigrateDatabaseToLatestVersion<RegistryContext, registry_services.Migrations.Configuration>());
    }

    public System.Data.Entity.DbSet<registry_services.Models.User> Users { get; set; }

    public int GetNextSequenceValue(string sequenceName)
    {
        var rawQuery = Database.SqlQuery<int>($"SELECT NEXT VALUE FOR {sequenceName};");
        var task = rawQuery.SingleAsync();
        int nextVal = task.Result;

        return nextVal;
    }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.Entity<IdentityUserLogin>().HasKey<string>(l => l.UserId);
        modelBuilder.Entity<IdentityRole>().HasKey<string>(r => r.Id);
        modelBuilder.Entity<IdentityUserRole>().HasKey(r => new { r.RoleId, r.UserId });

        // Your configuration goes here
    }
}

Я получаю эту ошибку

Невозможно вставить NULL в столбец 'UserId' таблицы AspNetUsers при выполнении команды update-database

Ниже приведен объект для пользователя USER в методе Seed: -

        new Models.User
        {
            id = 4,
            first_name_1 = "Nick",

            location_id = 3,

            UserId = "67639413-9e42-4eef-9292-bd66527f91bf"**// this is ID of one of the records in AspNetUsers Table**
        },

1 Ответ

1 голос
/ 15 марта 2020

Если вы собираетесь использовать Asp. Net Identity, прежде всего ваш CustomContext должен наследоваться от IdentityDbContext класса вместо DbContext. Во-вторых, ваш пользовательский класс должен наследовать от IdentityUser class.

Попробуйте, возможно, решите вашу проблему.

public class ApplicationUser : IdentityUser
{
}



public class CustomContext : IdentityDbContext<ApplicationUser>
{

    public CustomContext(DbContextOptions<CustomContext> options)
        : base(options)
    {
    }
}
...