我正在尝试首先使用代码在Entity Framework中映射多个SQL关系。
以下是我的课程:
[表( “B3_360ViewerData”)]
public class ViewerData : Entity { //.... Other properties ...// // The navigation property public EntityCollection<Feature> Features { get; set; }
}
[表( “B3_Feature”)]
公共类功能:实体 {
//.... Other properties ...// // The navigation property public ICollection<ViewerData> ViewerData { get; set; }
}
CREATE TABLE [dbo]。[ViewerDataFeatures](
[Feature_Id] [int] NULL,
[ViewerData_Id] [int] NULL
)
此表中的插入与我预期的一样,但是当我想要检索ViewerData实体时,我没有填充功能集合,它是空的。
我错过了什么吗?