using System.Collections.Generic;
public static class Program
public static void Main()
var joinTable = SeedJoinTable();
.GroupBy(jt => jt.StudentId, jt => jt.LectureId)
CountStudentId = x.Count(),
LectureIds = x.GroupBy(y => y),
"StudentId".PadRight(15) +
"LectureId".PadRight(15) +
"CountStudentId".PadRight(17) +
"CountStudentLectureId".PadRight(15));
foreach(var lectureId in x.LectureIds)
Console.WriteLine(string.Format("{0}{1}{2}{3}",
x.StudentId.ToString().PadRight(15),
lectureId.Key.ToString().PadRight(15),
x.CountStudentId.ToString().PadRight(17),
lectureId.Count().ToString().PadRight(15)));
public static List<JoinTable> SeedJoinTable()
var list = new List<JoinTable>();
for(int i = 0; i < 20; ++i)
list.Add(new JoinTable() {
public int StudentId { get; set; }
public int LectureId { get; set; }