I would like to use string array in linq query with IN CLAUSE like below
    string[] strArray = {"A", "B", "C", "D"};
    foreach (var item in SomeCollection.Where(x => x.column.Contains(seriesIIType)))
    {
    }
But I am getting below error.
Error 1 The best overloaded method match for 'string.Contains(string)' has some invalid arguments Error 2 Argument 1: cannot convert from 'string[]' to 'string'
 
     
     
     
     
    