我一直在努力在 MVC 4 EF 代码优先方法中为客户及其联系人实现以下逻辑。
客户表
public int ID { get; set; }
public string Name{ get; set; }
public string Address { get; set; }
customer_contact 表
public int CustomerID { get; set; }
public string ContactName { get; set; }
public string PhoneNo { get; set; }
public string Email { get; set; }
在这种情况下,一位客户通过外键参考获得多个联系方式。请任何人指导我实现这一目标。谢谢并提前。