我有4个关系表;
- 产品
- ProductBrand
- ProductImage
我需要linq
查询包含3个表由ProductBrand from CategoryId
组。
I try this;
var PBrand = from b in db.ProductBrands
join p in db.Products on b.BrandId equals p.BrandId
join i in db.ProductImages on p.ProductId equals i.ProductId
where b.CategoryId == 5
select b;
,但Products
和ProductImages
为空。如何在Brand
表上包含Products
和ProductImages
表?
Use Include
from b in db.ProductBrands.Include("Products.ProductImages")
where b.CategoryId == 5
select b;
或扩展方法Include
不只是select b,而是这样写Select b.col1, i.col1, b.coln, i.coln....;
以上将始终返回匿名类型对象,而不是特定的类…
谢谢