我想知道这是不是一个好习惯。
我正在构建一个包含多个模型实体的应用程序; profile.cs
,social.cs
,skill.cs
等,我希望每个用户都拥有个人资料,拥有社交链接,拥有特殊技能等等。
我想知道在identityuser.cs
中引用所有这些实体是否是一个好习惯,如果是,你是说identityuser可以有多个外键吗?
Public class profile{
public int Id {get;set;}
public string name{get;set}
public string phone{get;set}
}
//other properties and entities