MVC5 代码首先将用户添加到多对多关系



我使用 mvc5 和 codefirst 和用户帐户的东西。

我有一个简单的要求,用户可以属于多个商店,一个企业可以拥有多个商店。

到目前为止,我有业务 - 许多商店都在工作,但我似乎无法弄清楚如何设置用户。

我的商店模型

    public virtual Business Business { get; set; }
    public virtual ICollection<ApplicationUser> Employees { get; set; } 

我的商业模式

    public virtual ICollection<StoreModel> Stores { get; set; }

在我的上下文中,我尝试过

public class ApplicationUser : IdentityUser
{
    //a user can belong to multiple stores
    public virtual ICollection<StoreModel> Stores { get; set; }
}

但是,当我尝试添加迁移时,生成的代码将更改我的表名称,并在存储和AspNetUser之间创建连接表

我的迁移如下所示

  public override void Up()
    {
        RenameTable(name: "dbo.Stores", newName: "ApplicationUserStoreModels");
        DropForeignKey("dbo.Stores", "ApplicationUser_Id", "dbo.AspNetUsers");
        DropIndex("dbo.Stores", new[] { "ApplicationUser_Id" });
        CreateIndex("dbo.ApplicationUserStoreModels", "ApplicationUser_Id");
        CreateIndex("dbo.ApplicationUserStoreModels", "StoreModel_StoreId");
        AddForeignKey("dbo.ApplicationUserStoreModels", "ApplicationUser_Id", "dbo.AspNetUsers", "Id", cascadeDelete: true);
        AddForeignKey("dbo.ApplicationUserStoreModels", "StoreModel_StoreId", "dbo.Stores", "StoreId", cascadeDelete: true);
        DropColumn("dbo.Stores", "ApplicationUser_Id");
    }

任何人都可以帮助我需要做什么来让它工作吗?

你可以

没有存储表,在每个应用程序用户和企业中放置一个列表,EF将建立你的多对多关系,或者你可以使用流畅的API来映射所有内容。应该是如下所示的内容。

 public class Business
{
    public virtual ICollection<StoreModel> Stores { get; set; }
}
public class ApplicationUser : IdentityUser
{
    public virtual ICollection<StoreModel> Stores { get; set; }
}


public class StoreModel {
public string ApplicationUserId { get; set; }
public int BusinessId { get; set; }
public virtual Business Businesss { get; set; }
public virtual ApplicationUser ApplicationUsers { get; set; }
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{   base.OnModelCreating(modelBuilder);
modelBuilder.Entity<StoreModel>().HasKey(e => new { e.ApplicationUserId, e.BusinessId});
}

相关内容

  • 没有找到相关文章

最新更新