将IGrouping转换为IList <class> </class>

时间:2013-07-03 20:40:14

标签: c# linq

我想从IGrouping查询中获取结果并将其放入列表中。

我尝试按照以下方式执行此操作:

实体类

public class WordRank
{

    public string Word { get; set; }
    public string WordScore { get; set; }
}

方法

     public void DisplayArticles()
    {
        var articles = this.articleRepository.TextMinerFindBy(this.view.Client, this.view.Brand, this.view.Project, this.view.Term, this.view.Channel, this.view.Begin, this.view.End, this.view.OnlyCategorized, this.view.UniquePosts);
        string snippets = string.Empty;

        foreach (var article in articles)
        {
            snippets = snippets + " " + article.Snippet;
        }

        Regex wordCountPattern = new Regex(@"[.,;:!?""\s-]");
        string snippetCollection = wordCountPattern.Replace(snippets, " ");

        var words = snippetCollection.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);

        var groups = words.GroupBy(w => w);


        foreach (var item in groups)
        {
            this.view.Words.Add(item);
        }
    }

但是无法将项目分配给IList。 任何人都可以给我点亮吗?

由于

1 个答案:

答案 0 :(得分:7)

编辑:好的,现在我们知道你要做什么(见评论):

foreach (var group in groups)
{
    this.view.Words.Add(new WordRank { Word = group.Key,
                                       WordScore = group.Count() });
}

或者,如果您乐意用this.view.Words替换整个List<WordRank>,请将整个底部位替换为:

this.view.Words = words.GroupBy(w => w)
                       .Select(new WordRank { Word = group.Key,
                                              WordScore = group.Count() })
                       .ToList();