Extending asp.net mvc 5 identity with custom tables

最后都变了- 提交于 2019-11-30 09:09:44

You just need to add mapping to company table like this:

public class ApplicationUser : IdentityUser
{

// User name, full name, e-mail etc....
    public virtual ICollection<Company> Companies { get; set; }
}

and in company entity:

public class Company
{

    //other properties
    public virtual ApplicationUser  User { get; set; }
}

Then add new migration by Add-Migration command in your Package Manager Console. After this moment you will get migration script in your Migrations folder.

And then just call Update-Database on the same console for applying your migration to database.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!