Bunu yapmak için basit bir LINQ sorgusu varsayalım, tam olarak nasıl emin değilim.
Bu kod parçası verildiğinde:
class Program
{
static void Main(string[] args)
{
List<Person> peopleList1 = new List<Person>();
peopleList1.Add(new Person() { ID = 1 });
peopleList1.Add(new Person() { ID = 2 });
peopleList1.Add(new Person() { ID = 3 });
List<Person> peopleList2 = new List<Person>();
peopleList2.Add(new Person() { ID = 1 });
peopleList2.Add(new Person() { ID = 2 });
peopleList2.Add(new Person() { ID = 3 });
peopleList2.Add(new Person() { ID = 4 });
peopleList2.Add(new Person() { ID = 5 });
}
}
class Person
{
public int ID { get; set; }
}
Bana bütün halk vermek için bir LINQ sorgusu yapmak istiyorum peopleList2
o değildir peopleList1
.
Bu örnek bana iki kişi vermelidir (ID = 4 & ID = 5)