I do have List<ColumnDiff> columnDiffList
of
public class ColumnDiff
{
public string columnName;
public string leftValue;
public string rightValue;
}
I need to determine whether there are elements where columnName either "A", "B" , "C" It is not essential to extract a subList.
In SQL terms
columName in ( 'A' , 'B' , 'C' )
How to code that in LINQ