I have list of Fruit:
List<Fruit>
where Fruit has the following properties/fields:
id
name
color
Given an array of integers:
int[] ids = new [] {1,2,8};
How can I filter my list so that it will exclude the fruits whose id is in the array?