博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EF GroupBy 分组 取某条的 总数
阅读量:6126 次
发布时间:2019-06-21

本文共 2122 字,大约阅读时间需要 7 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace hashmap{    class A    {        public string name { get; set; }        public string age { get; set; }    }    class Program    {        static void Main(string[] args)        {            Console.WriteLine();            Console.WriteLine();            Console.WriteLine();            Console.WriteLine();            Console.WriteLine("");            get();            Console.WriteLine();            Dictionary
td = new Dictionary
(); td[5] = "5"; Console.WriteLine(); //KeyValuePair<> List
all = new List
(){ new A{name="1000A",age="1"}, new A{name="1000A",age="2"}, new A{name="1000A",age="3"}, new A{name="1000A",age="4"}, new A{name="1000B",age="4"}, new A{name="1000B",age="4"}, new A{name="1000B",age="4"}, }; Console.WriteLine("---"); var allgrbname = all.GroupBy(a => a.name); // allgrbname 就是一个集合 集合成员 存在 key 与 value(集合 集合成员为A) //在此例中 allgrbname有两个元素 分别为 key 1000A value 长 4 key 1000B value 长 3 Console.WriteLine(allgrbname.Count(a => a.Key == "1000A")); //1 Count 返回满足集合条件行数 Key为1000A 的 1条 Console.WriteLine(allgrbname.Where(a => a.Key == "1000A").Count()); //1 Where 过滤集合元素 Key为1000A 的 返回集合 返回行数 1条 Console.WriteLine(allgrbname.Where(a => a.Key == "1000A").FirstOrDefault().Count()); //4 Where 过滤集合元素 Key为1000A 的 返回集合 元素1条 返回集合中第一个元素 key 1000A value 长 4 返回 集合 allgrbname成员的value Console.WriteLine(allgrbname.Where(a => a.Key == "1000A").FirstOrDefault().Key); //1000A 返回 集合 allgrbname成员的key var sdsds = all.Where(a => a.name == "asdasd"); Console.WriteLine(sdsds.Count()); } static void get() { Console.WriteLine(); Console.WriteLine(); Console.WriteLine(); } }}

 

转载地址:http://ilfua.baihongyu.com/

你可能感兴趣的文章
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>
word2010中去掉红色波浪线的方法
查看>>
fabric上下文管理器(context mangers)
查看>>
JQuery-EasyUI Datagrid数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)
查看>>
并发和并行的区别
查看>>
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>
初识中间件之消息队列
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
Spring常用注解
查看>>
我的友情链接
查看>>
PCS子层有什么用?
查看>>
查看端口,关闭端口
查看>>
代码托管平台简介
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>