私はこのようなlinqクエリを持っています
var Query = from c in table
where (some condition)
select new {
Name = c.Name,
courses = // this returns a list,
};
結果がこのようになるように、これをグリッドビューにバインドするにはどうすればよいですか
name1 course1
name1 course2
name1 course3
name2 course1
name2 course2
何か案は?