Code First Entity Framework - 具有辅助表的单个到多个

时间:2014-07-03 20:09:55

标签: c# sql entity-framework entity-relationship

我试图首先在代码上映射这些表:

Table Agent(
    int AgentId PK,
    --...
)

Table Group(
    int GroupId PK,
    varchar Name,
)

Table GroupAgent(
    int AgentId PK,
    int GroupId
)

但现在,我不知道如何映射这个:

public class Agent{
   public int Id {get; set;}
   public string Name {get; set;}
   public virtual Group AgentGroup {get; set;}
}

public class Group{
    public int Id {get; set;}
    public List<Agent> Agents {get; set;}
}

有人可以帮助我吗?

0 个答案:

没有答案