111,128
社区成员
发帖
与我相关
我的任务
分享
public class User
{ [Key]
public int ID { set; get; }
public virtual ICollection<Role> Roles { set; get; }
}
public class Role
{
[key]
public int id;
public ICollection<CDC_Info> CDC_Infos { set; get; }
public ICollection<User> Users { set; get; }
}
public class CDC_Info
{
[Key]
public int ID { set; get; }
public ICollection<Role> Roles { set; get; }
}