私はこのクエリを持っています:
from e in Employee
join t in TimeTable
on e.Id equals t.EmpId
group new {e,t} by e.Id into g
orderby g.Key
select new
{
Emp = g.Key,
Items = g.Select(c => c.t.OtherTable.Somevalue).Distinct()
}
Employees
正常に動作しますが、すべてをグループ化するために、グループ化を逆にする必要がありますOtherTable.Somevalue
それ、どうやったら出来るの?