user256890
user256890

Reputation: 3424

Writing 'CONTAINS' query using LINQ

Given the output of query:

var queryResult = from o in objects
                  where ...
                  select new 
                      {
                         FileName = o.File,
                         Size = o.Size
                      }

What would you consider the neatest way to detect if a file is in the queryResult? Here is my lame try with LINQ:

string searchedFileName = "hello.txt";
var hitlist = from file in queryResult
              where file.FileName == searchedFileName
              select file;
var contains = hitlist.Count() > 0;

There must be an more elegant way to figure out the result.

Upvotes: 8

Views: 388

Answers (1)

Yaakov Ellis
Yaakov Ellis

Reputation: 41530

string searchedFileName = "hello.txt";
var contains = queryResult.Any(file => file.FileName == searchedFileName);

Upvotes: 17

Related Questions