解决方法
Jon的答案可行,但恕我直言
using join in LINQ to Entities is usually wrong,因为它复制了你的模型中的代码.我可以在L2E中以更简单的方式重写Jon的查询:
var query = from customer in db.Customers from order in customer.Orders from product in order.Products from info in product.Info select new { customer.Name,info.BriefDescription }
这大约是打字的50%和重复代码的0%.请考虑您的关系已在数据库和模型中定义.您是否真的想在您编写的每个查询中再次复制它们,并在重构模型时中断查询?