Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

3 Answers

up vote 1 down vote accepted

There are a few ways, here is a simple example:

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            List<ColumnDiff> columnDiffs = new List<ColumnDiff>();
            columnDiffs.AddRange(new[]  {
                                             new ColumnDiff(){columnName="Aa"}
                                            ,new ColumnDiff(){columnName="A"}
                                            ,new ColumnDiff(){columnName="B"}
                                            ,new ColumnDiff(){columnName="Bb"}
                                            ,new ColumnDiff(){columnName="C"}
                                            ,new ColumnDiff(){columnName="Cc"}
                                        });

            bool hasItems = columnDiffs.Exists(x => x.columnName == "A" || x.columnName == "B" || x.columnName == "C");
            hasItems = columnDiffs.Any(x => x.columnName == "A" || x.columnName == "B" || x.columnName == "C");
            hasItems = columnDiffs.FirstOrDefault(x => x.columnName == "A" || x.columnName == "B" || x.columnName == "C") != null;

            Console.ReadKey();
        }
    }

    public class ColumnDiff
    {
        public string columnName;
        public string leftValue;
        public string rightValue;
    }
}
share|improve this answer

Maybe this is what you need:

var searchList = new[] {"A", "B", "C"};
var result = columnDiffList.Where(i => searchList.Any(j => j == i.columnName));

So first define the list of things you want to search for and then use it to do the search against your list (columnDiffList).

share|improve this answer
var res = from c in columnDiffList where c.columnName == "A" || c.columnName == "B" select c;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.