我有一个项目实体和一个Rfi实体。项目实体包含团队成员列表。项目是 Rfi 实体中的导航属性。在 Rfi 实体中有一个收件人 ID。此 ID 表示团队成员集合中的人员。想象一下,在网页上,我们有一个名为"收件人"的下拉框。该列表包括项目的所有团队成员。 用户将从该列表中选择一个联系人。该联系人的 Id 将保存在 RecipientsId 属性中。重新加载页面后,我们将根据 RecipeintsId 属性中的值在下拉列表中选择该用户的 Id。使用流畅的 API 在 EF 4.1 中映射此内容的最佳方法是什么?
public class Project : BaseEntity
{
public string ProjectNumber { get; set; }
public string Description { get; set; }
public string CreatedBy { get; set; }
public string ModifiedBy { get; set; }
public string Currency { get; set; }
#region Navigation Properties
public Guid AddressId { get; set; }
public virtual Address Address { get; set; }
public Guid CompanyCodeId { get; set; }
public virtual CompanyCode CompanyCode { get; set; }
public virtual ICollection<Contact> TeamMembers { get; set; }
#endregion
}
public class Rfi : Document
{
public string Number { get; set; }
public string Subject { get; set; }
public string SubcontractorRfiReference { get; set; }
public string SpecificationSection { get; set; }
public RfiStatus RfiStatus { get; set; }
public Guid RecipientId { get; set; }
#region Navigation Properties
public Guid ProjectId { get; set; }
public Project Project { get; set; }
#endregion
}
我了解,您的问题是Rfi
和Contect
之间的映射 - 从数据库的角度来看,Project
在您的收件人功能中没有任何角色。
您需要在Rfi
中Recipient
导航属性,或者在Contact
中Rfis
导航属性。EF 代码首先需要关系的至少一侧的导航属性。
因此,您可以使用以下内容:
public class Rfi : Document
{
public string Number { get; set; }
public string Subject { get; set; }
public string SubcontractorRfiReference { get; set; }
public string SpecificationSection { get; set; }
public RfiStatus RfiStatus { get; set; }
#region Navigation Properties
public Guid RecipientId { get; set; }
public Contact Recipient { get; set; }
public Guid ProjectId { get; set; }
public Project Project { get; set; }
#endregion
}
和地图:
modelBuilder.Entity<Rfi>()
.HasRequired(r => r.Recipient)
.WithMany()
.HasForeignKey(r => r.RecipientId);