没有合适的资源?快使用搜索试试~ 我知道了~
废话不多说了,直接给大家贴代码了,具体代码如下所示: public class Person { public string FirstName{set;get;} public string LastName{set;get;} public Person(){} public Person(string firstName, string lastName) { FirstName = firstName; LastName = lastName; } } List<Person> personList=new List<Person>(); personList.Add
资源推荐
资源详情
资源评论
C# 中的中的GroupBy的动态拼接问题及的动态拼接问题及GroupBy用法介绍用法介绍
废话不多说了,直接给大家贴代码了,具体代码如下所示:
public class Person
{
public string FirstName{set;get;}
public string LastName{set;get;}
public Person(){}
public Person(string firstName, string lastName)
{
FirstName = firstName;
LastName = lastName;
}
}
List<Person> personList=new List<Person>();
personList.Add(new Person() { FirstName = "Mickey", LastName = "Mouse" });
personList.Add(new Person() { FirstName = "Mickey", LastName = "Mouse" });
personList.Add(new Person() { FirstName = "zhang", LastName = "san" });
string columnName="FirstName";
var dics=personList.GroupBy(x => GetPropertyValue(x, columnName)).ToDictionary(x=>x.Key,x=>x.Count());
foreach(var dic in dics)
{
textBox1.AppendText(string.Format("{0},{1}\r",dic.Key,dic.Value));
}
ps:下面看下:下面看下C# List泛型集合中的泛型集合中的GroupBy<>用法用法
//根据子项目id得到flowjump实体类
flowJumps = this.FlowJumps;
//按工序groupby flowjumps
IEnumerable<IGrouping<int, FlowJump>> query =
flowJumps.GroupBy(pet => pet.processID, pet => pet);
foreach (IGrouping<int, FlowJump> info in query)
{
List<FlowJump> sl = info.ToList<FlowJump>();//分组后的集合
//也可循环得到分组后,集合中的对象,你可以用info.Key去控制
//foreach (FlowJump set in info)
//{
//}
}
在使用的时候需要使用分组中的键:
var groupInfo = orderinfo.Info.GroupBy(m => m.xx).ToList();
foreach (var item in groupInfo)
{
string infotemp = item.Key;
}
总结总结
以上所述是小编给大家介绍的C# 中的GroupBy的动态拼接问题及GroupBy<>用法介绍,希望对大家有所帮助,如果大家有任
何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对软件开发网网站的支持!
您可能感兴趣的文章您可能感兴趣的文章:解决C#中Linq GroupBy 和OrderBy失效的方法C# GroupBy的基本使用教程
资源评论
weixin_38545332
- 粉丝: 6
- 资源: 979
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功