我需要使用导航属性获取第3级实体。
表1 表2 表3 表4 表5 表1涉及表2,表2涉及具有外键关系船的表3,4,5。 我想根据table1字段从表3,4,5中提取数据。我试图使用include方法但无法找到该方法。如果您可以提供非常有用的示例代码。
答案 0 :(得分:1)
使用System.Data.Objects
中的include方法。 Include应使用.Include("Table1.PropertyNameTable2.PropertyNameTable3.PropertyNameTable4");
表示法。