我正在尝试首先使用代码在实体框架中映射多对多 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; }
}
创建表 [dbo].[ViewerDataFeatures](
[Feature_Id] [int] NULL,
[ViewerData_Id] [int] NULL
)
此表中的插入进展顺利,正如我预期的那样,但是当我想检索 ViewerData 实体时,我没有填充 Features 集合,它为空。
我错过了什么吗?