实体框架中的多对多关系不检索相关集合

时间:2013-07-24 07:59:12

标签: entity-framework orm ef-code-first mapping

我正在尝试首先使用代码在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实体时,我没有填充功能集合,它是空的。

我错过了什么吗?

0 个答案:

没有答案