码迷,mamicode.com
首页 > Windows程序 > 详细

C# GroupBy的使用

时间:2020-02-29 20:52:05      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:uip   skill   eva   ant   details   groupby   hhhh   query   tail   

var skill = query.GroupBy(i=>i.SkillTypeId)
.Select(i => new
            {
              skillType=i.key,
              skill=i.Select(s=>new{
              i.Id,
              i.Level,
              i.IsEquiped,
            })                          
 

输出结果

{
"skillType":“刀”
"skill": [
                {
                    "Id": 35,                                                     
                    "Level": 1,                  
                    "IsEquiped": true,                   
                },
                {
                    "Id": 36,                   
                    "Level": 1,
                    "IsEquiped": true,
                  
                },
     ]
"skillType":""
"skill": [
                {
                    "Id": 35,                                                     
                    "Level": 1,                  
                    "IsEquiped": true,                   
                },
                {
                    "Id": 36,                   
                    "Level": 1,
                    "IsEquiped": true,
                  
                },
     ]
}

转自:https://blog.csdn.net/hhhhhhenrik/article/details/81980594?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

C# GroupBy的使用

标签:uip   skill   eva   ant   details   groupby   hhhh   query   tail   

原文地址:https://www.cnblogs.com/firstcsharp/p/12384941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!