var list_Subject_set = list_Subject.Skip(iPageSize * iPageIndex).Take(iPageSize).ToList(); iPageSize:一页显示多少行; iPageIndex:页数 ...
分类:
其他好文 时间:
2020-06-28 13:07:45
阅读次数:
54
1.IN的使用; (1)当多项查询的是Guid类型时; #region 将string数组转化Guid数组 string[] ProjIdList = ProjIdset.Trim().Split(','); Guid[] guid_ProjId = new Guid[ProjIdList.Leng ...
分类:
其他好文 时间:
2020-06-28 12:56:02
阅读次数:
65
List<CoupleBackList> CoupleBackList_at = new List<CoupleBackList>(); var retData = RetDataList.AsEnumerable().Select(t => new { Id = t.Field<Guid>("Id ...
分类:
编程语言 时间:
2020-06-28 12:43:22
阅读次数:
176
1.简单的分组统计; var DetailList = DetailLisAST.GroupBy(a => a.ProjId).Select(a => new { a.Key , Count = a.Count() }).ToList(); 2.根据多个字段分组统计; var DetailList_ ...
分类:
其他好文 时间:
2020-06-28 12:35:28
阅读次数:
63
namespace WpfGridChange { using System; using System.CodeDom.Compiler; using System.Diagnostics; using System.Windows; using System.Threading.Tasks; p ...
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data;using System.Data.Sql ...
分类:
数据库 时间:
2020-06-27 20:12:12
阅读次数:
73
using System;using System.Collections.Generic;using System.ComponentModel.Design;using System.Linq;using System.Text;using System.Threading.Tasks; nam ...
分类:
其他好文 时间:
2020-06-27 19:55:37
阅读次数:
73
最近尝试用WPF重新编写之前用WinForm编写的应用程序,在使用中,需要从数据库查询到一系列数据库,在前台DataGrid里面显示出来。 后台 : using System; using System.Collections.Generic; using System.Linq; using Sy ...
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc; namespace WeekMvc.Controllers{ public class Goo ...
分类:
Web程序 时间:
2020-06-26 20:02:21
阅读次数:
61
1. c#容器。及性能比较。 https://blog.csdn.net/chen8238065/article/details/47018271/ 2. IList list 3. AddRange() 4. var关键字 5. list的linq操作 https://www.cnblogs.co ...