试图通过.NET Linq中where子句的集合找到一些标签

时间:2012-07-06 01:16:39

标签: c# .net linq .net-4.0

我正在尝试查找所有与单词列表中的名称相等的标记。

例如: -

public class Tag
{
   public int Id { get; set; }
   public string Name { get; set; }
   public string UserId { get; set; }
}

// Arrange.
var searchWords = new List<string>(new [] {"c#", ".net", "rails"});
var tags = new Tags
               {
                   new Tag { Name = "c#" },
                   new Tag { Name = "pewpew" },
                   new Tag { Name = "linq" },
                   new Tag { Name = "iis" }
               };

// Act.
// Grab all the tags given the following search words => 'c#' '.net' and 'rails'
// Expected: 1 result.
var results = ???

// Assert.
Assert.NotNull(results);
Assert.Equal(1, results.Count);
Assert.Equal("c#", results.First());

我一直在尝试使用AnyContains,但我的代码无法编译。

注意:可以是.NET 4.0

1 个答案:

答案 0 :(得分:6)

这对你有用吗?

var results = tags.Where(t => 
    searchWords.Contains(t.Name, StringComparer.InvariantCultureIgnoreCase));

另请注意,由于resultsIEnumerable<T>,因此您需要在断言中使用方法results.Count()而不是属性results.CountCount是由ICollection接口定义的属性。