1: 2: 3: 4: 5: 6: 7: 8: 9:
IList<A> lstOne = new List<A>(); IList<B> lstTwo = new List<B>(); private void button1_Click(object sender, EventArgs e) { IList<A> query = (from a in lstOne where !lstTwo.Any(lst2 => lst2.OneID == a.ID) select a).ToList(); }