I have a join
var result =
from a in dbContext.As
join b in dbContext.Bs on a.Id equals b.A.Id
select new { A = a, Ds = b.AList.Select(listItem => listItem.ObjectOfTypeD) }
join c in dbContext.Cs on ANONYMOUS_OBJECT.Ds.Id equals c.ObjectOfTypeD.Id
how can I join the contents of my select clause with dbContext.Cs?
You can continue Query Syntax LINQ expression by
intooperator afterselect: