我正在尝试查找所有与单词列表中的名称相等的标记。
例如: -
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());
我一直在尝试使用Any
或Contains
,但我的代码无法编译。
注意:可以是.NET 4.0
答案 0 :(得分:6)
这对你有用吗?
var results = tags.Where(t =>
searchWords.Contains(t.Name, StringComparer.InvariantCultureIgnoreCase));
另请注意,由于results
为IEnumerable<T>
,因此您需要在断言中使用方法results.Count()
而不是属性results.Count
。 Count
是由ICollection
接口定义的属性。