I have 4 relational table;
I need linq query included 3 table
linq
Use Include
from b in db.ProductBrands.Include("Products.ProductImages") where b.CategoryId == 5 select b;
Or the extension method Include.