加载引用表的引用表

时间:2018-02-21 14:35:51

标签: c# asp.net-mvc-5 entity-framework-core

我有多个表引用我数据库中的其他表。

我可以选择一个表的条目和引用的条目。在引用表中也是一个表格。

如何在Microsoft Entity Framework中使用一个查询加载所有链接表?

表: 设备< =>接口< =>信息

1 个答案:

答案 0 :(得分:-1)

使用Include()

using (var context = new BloggingContext()) 
{ 
    // Load all blogs and related posts 
    var blogs1 = context.Blogs 
                          .Include(b => b.Posts) 
                          .ToList(); 
}

请参阅this