我有两张桌子
TableA
aId
aValue
TableB
bId
aId
bValue
我想通过 加入这两个表aId
,然后从那里将它们分组bValue
var result =
from a in db.TableA
join b in db.TableB on a.aId equals b.aId
group b by b.bValue into x
select new {x};
我的代码无法识别组后的加入。换句话说,分组有效,但联接不起作用(或者至少我不知道如何在联接后访问所有数据)。