using System.Collections.Generic;
public static class Program
public static void Main()
var joinTable = SeedJoinTable();
.GroupBy(jt => new { jt.StudentId, jt.LectureId } )
StudentId = g.Key.StudentId,
LectureId = g.Key.LectureId,
CountStudentIdLectureId = g.Count()
"StudentId".PadRight(15) +
"LectureId".PadRight(15) +
"CountStudentId".PadRight(17) +
"CountStudentLectureId".PadRight(15));
Console.WriteLine(string.Format("{0}{1}{2}{3}",
x.StudentId.ToString().PadRight(15),
x.LectureId.ToString().PadRight(15),
x.CountStudentId.ToString().PadRight(17),
x.CountStudentIdLectureId.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; }