With linq I have to check if a value of a row is present in an array. The equivalent of the sql query:
WHERE ID IN (2,3,4,5)
How can I
An IEnumerable.Contains(T) statement should do what you're looking for.
IEnumerable.Contains(T)