码迷,mamicode.com
首页 >  
搜索关键字:linq to objects    ( 10076个结果
Linq语句OrderBy的使用
1.从大到小(DESC) list_Subject_set = list_Subject.OrderByDescending(p => p.ManagerName).ToList(); 2.从小到大(ASC) list_Subject_set = list_Subject.OrderBy(p => ...
分类:其他好文   时间:2020-06-28 13:33:48    阅读次数:55
Linq语句分页的使用
var list_Subject_set = list_Subject.Skip(iPageSize * iPageIndex).Take(iPageSize).ToList(); iPageSize:一页显示多少行; iPageIndex:页数 ...
分类:其他好文   时间:2020-06-28 13:07:45    阅读次数:54
Linq语句in与not in的使用
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
Linq语句AsEnumerable()的使用
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
Linq语句GroupBy的使用
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
SQLServer查看各个表大小
declare @id int declare @type character(2) declare @pages int declare @dbname sysname declare @dbsize dec(15,0) declare @bytesperpage dec(15,0) declar ...
分类:数据库   时间:2020-06-28 11:13:36    阅读次数:256
wpf 全局异常捕获处理
namespace WpfGridChange { using System; using System.CodeDom.Compiler; using System.Diagnostics; using System.Windows; using System.Threading.Tasks; p ...
分类:Windows程序   时间:2020-06-28 09:50:10    阅读次数:110
常用DBhelper封装方法
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
Linq中常用语法
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
关于Objects类的getClass方法为什么可以得到子类的地址的思考
这一段时间,总是很纠结为什么Objects中的getClass方法可以返回包含子类地址信息的东西(我不确定返回值类型)。 因为在Java中,我们定义的父类,我想破脑袋也想不出怎么可以得到子类的信息。 在源码中,getClass非常简洁。 **源码:**public final native Clas ...
分类:其他好文   时间:2020-06-27 13:29:31    阅读次数:67
10076条   上一页 1 ... 21 22 23 24 25 ... 1008 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!