Where Or (1) 썸네일형 리스트형 Where 쿼리 using System; using System.Collections.Generic; using System.Linq; namespace LinqGeneric { #region Where class Join { class Department { public int Id { get; set; } public string Name { get; set; } } class Employee { public int Id { get; set; } public string Name { get; set; } public int DeptId { get; set; } } static void Main(string[] args) { List departments = new List(); departments.Add(new D.. 이전 1 다음