Saya akan berasumsi ada permintaan LINQ sederhana untuk melakukan ini, saya hanya tidak yakin bagaimana caranya.
Diberikan potongan kode ini:
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; }
}
Saya ingin melakukan kueri LINQ untuk memberi saya semua orang peopleList2
yang tidak masuk peopleList1
.
Contoh ini harus memberi saya dua orang (ID = 4 & ID = 5)