我有两个model
public partial class Nav
{
[Key]
public int Id { get; set; }
[StringLength(50)]
public string Name { get; set; }
public string Remark { get; set; }
public ICollection<Section> Sections { get; set; }
}
public partial class Section
{
[Key]
public int Id { get; set; }
[StringLength(50)]
public string Name { get; set; }
public string Remark { get; set; }
[ForeignKey("Nav")]
public int NavId { get; set; }
public Nav Nav { get; set; }
}
由上面代码可知我的两个model存在外键关系,但我find一个nav对象后访问其中的Sections属性,却是null,但我用modelfirst创建的项目是可以直接find对象后再访问其中的导航属性ICollection<Section> Sections 的
望高手解答
virtual 修饰ICollection