Assume I have a class:
public class Item
{
...
public IEnumerable<int> ClientsIds { get; set; }
}
And the following code:
List<Item> items = GetItems();
int[] ids = GetIds();
Now I need to select only such items that contain any element in ids int array. How can I do it?