//控制器using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.IO;//上传文件的数据流 namespace U ...
分类:
Web程序 时间:
2020-02-13 16:31:22
阅读次数:
95
简单的管道模拟 using System; using System.Collections; using System.Collections.Generic; using System.Threading.Tasks; using static ConsolePipeline.Program; ...
分类:
其他好文 时间:
2020-02-13 09:24:25
阅读次数:
56
1.创建过滤类 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace P01MVCFilter.Filters { // ...
分类:
其他好文 时间:
2020-02-12 23:45:37
阅读次数:
80
1 using System; 2 using System.Data; 3 using System.Data.OleDb ; 4 using System.Linq; 5 using System.IO; 6 7 OleDbConnection conn=new OleDbConnection( ...
分类:
数据库 时间:
2020-02-12 22:32:41
阅读次数:
131
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Reflection; 5 using System.Text; 6 7 //Net Reflector(收费)官方网址:h ...
分类:
其他好文 时间:
2020-02-12 10:48:29
阅读次数:
77
以为公司一直没有电源屏厂家协议解析为DevVars相关的软件,手写费时费力还容易出错,用了2天时间做了一个.txt协议文件筛选加并解析成xml文件的工具,总结一下用到的几个知识点 1、LINQ 是一个解析XML的轻量级工具,他的命名空间是using System.xml.Linq; 和using S ...
LINQ(Language Integrated Query)语言集成查询是一组用于c#和Visual Basic语言的扩展。 它允许编写C#或者Visual Basic代码以操作内存数据的方式,查询数据库。 LINQ的读法:lin k 很多人会误读为lin Q LINQ的全称:Language-I ...
分类:
Web程序 时间:
2020-02-11 09:51:21
阅读次数:
81
适用场景:对查询出的语句进行排序,比如按时间排序等等。 说明:按指定表达式对集合排序;延迟,:按指定表达式对集合排序;延迟,默认是升序,加上descending表示降序,对应的扩展方法是OrderBy和OrderByDescending 1.简单形式 这个例子使用 orderby 按雇用日期对雇员进 ...
分类:
编程语言 时间:
2020-02-10 10:11:11
阅读次数:
95
//******* 对集合按Name属于进行分组GroupBy查询 ******** //结果中包括的字段: //1、分组的关键字:Name = g.Key //2、每个分组的数量:count = g.Count() //3、每个分组的年龄总和:ageC = g.Sum(item => item.A ...
LINQ(Language Integrated Query),即语言集成查询是一组用于C#和Visual Basic语言的扩展。它允许编写C#或者Visual Basic代码以查询数据库相同的方式操作内存数据。 LINQ的读法:lin k 很多人会误读为lin QLINQ的全称:Language- ...
分类:
其他好文 时间:
2020-02-10 09:47:44
阅读次数:
88