我已經看過101 Linq示例here,但我在該列表中看不到任何此類內容。如果我只是沒有看到相關的例子,請鏈接到它。LINQ - 加入多個列表
如果我有這3類:
class Student { int id; string name }
class Course { int id, string name }
class Enrolment { int studentId; int courseId; }
我將如何使用LINQ獲得的課程的學生被登記在一個列表? (假設我有三個班的一個IList)
在連接之前執行where *會更有效 - 在連接中將註冊負載與課程進行匹配沒有意義,只能立即將它們丟棄。 – 2009-04-15 14:52:04