4

我想根据其值过滤 linq Lookup:

查找:

ILookup<int, Article> lookup

到目前为止,这是我所拥有的不起作用的东西:

IList<int> cityIndexes = GetCityIndexesByNames(cities);    

lookup = lookup
                .Where(p => p.Any(x => cityIndexes.Contains((int)x.ArticleCity)))
                .SelectMany(l => l)
                .ToLookup(l => (int)l.ArticleParentIndex, l => l);

只是为了澄清:我想获取所有具有包含在上述城市索引列表中的城市索引的文章。

4

1 回答 1

7

您发布的代码的问题在于,您获得的所有文章都具有与具有匹配城市索引的任何文章相同的 ID。如果您只是先解包组,则没有问题。

IList<int> cityIndexes = GetCityIndexesByNames(cities);

lookup = lookup
  .SelectMany(g => g)
  .Where(article => cityIndexes.Contains((int)article.ArticleCity)))
  .ToLookup(article => (int)article.ArticleParentIndex); 

或者

lookup =
(
  from g in lookup
  from article in g
  where cityIndexes.Contains((int)article.ArticleCity)))
  select article
).ToLookup(article => (int)article.ArticleParentIndex); 
于 2011-02-09T21:18:44.197 回答