面向对象思想 制作仪表盘 访问修饰符,如果创建的属性字段,类,什么也不加默认为private private字段只能在类内使用 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using Syste ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main ...
linq的延时执行是指枚举时才去一个个生成结果元素。 流式处理是linq延时执行的一种,在生成元素前不需要获取所有源元素,只要获取到的源元素足够计算时,便生成结果元素。 流式处理的标准查询运算符返回值通常是个普通序列。 ToAsEnumerable namespace ConsoleApp4 { c ...
分类:
其他好文 时间:
2020-02-28 17:13:37
阅读次数:
75
标准查询运算符: 标准查询运算符是一组方法,提供包括筛选where、投影select、聚合(例如max)、排序order by等在内的查询功能。 string sentence = "the quick brown fox jumps over the lazy dog"; string[] wor ...
分类:
其他好文 时间:
2020-02-26 01:18:36
阅读次数:
73
首先看到Distinct 肯定会想当然的直接.Distinct() 这样调用。 需要知道这里的Distinct 是以对象为单位来去重的。当你Select new 映射的时候就算属性值相同也不会进行去重。 单列的使用这里就略过使用了 多列的使用(比如我需要去重KeyValuePairModel 这个对 ...
分类:
其他好文 时间:
2020-02-24 18:56:48
阅读次数:
75
"TypeScript Array Remove" "EF Code First 快速创建" "EF Core 多个DbContext迁移命令" "Entity Framework Core for Console" "EntityFrameworkCore 一表对多表存在外键的设计" "linq ...
分类:
其他好文 时间:
2020-02-24 13:08:56
阅读次数:
78
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Linq.Expressions; using ...
分类:
数据库 时间:
2020-02-23 19:53:14
阅读次数:
293
using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks ...
分类:
其他好文 时间:
2020-02-23 19:50:00
阅读次数:
63
记录LINQ学习过程。 概要 LINQ是一种“语言集成”的查询表达式,使用LINQ可以智能提示和进行类型检查。C#里可以编写的LINQ查询有SQL数据库、XML文档、ADO.NET数据集、支持IEnumerable和IEnumerable的对象。使用LINQ,可以简单对数据源进行分组、排序、筛选。有 ...
分类:
其他好文 时间:
2020-02-22 22:26:50
阅读次数:
104
实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EmpPrj.Entity { public class y_EmployeeEntity { pu ...
分类:
Web程序 时间:
2020-02-22 21:43:00
阅读次数:
97