用Linq汇总列表中的对象列表

时间:2019-07-20 04:18:19

标签: linq ef-code-first ef-core-2.2

我有一个球队列表,其中包含另一个球员列表,并且每个球员都玩过游戏号码,我想总结一个球员按球队分组的每个玩过的游戏 如何执行linq函数以获得该结果?

我已经尝试过类似的方法,但是被卡住了

var ListResultQuery = students.SelectMany(books=>books.Scores.Where(book=>book.Price>5).GroupBy(b=>b.Name));

我的项目当前为:

    public class Team{
        public string Name{get;set}
        public ICollection<Player> PlayerList{get;set}
    }

    public class Player{
        public string Name{get;set}
        public int playedGames{get;set}
    }

0 个答案:

没有答案