码迷,mamicode.com
首页 >  
搜索关键字:linq to objects    ( 10076个结果
【Django学习】ORM
比较操作符 __gt 大于__gte 大于等于__lt 小于__lte 小于等于__in__exact 精确等于 like 'aaa'__iexact 精确等于 忽略大小写 ilike 'aaa'__contains 包含 like '%aaa%'__icontains 包含 忽略大小写 ilike ...
分类:其他好文   时间:2020-06-21 19:30:52    阅读次数:52
C# 初始化设定项可以为LINQ查询中的匿名类型进行属性的初始化
由于LINQ查询返回的集合中匿名类型的属性都是只读的,如果需要为匿名属性赋值,只能通过初始化设定项来进行。初始化设定项还能为属性使用表达式。 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 List<Person> person ...
分类:Windows程序   时间:2020-06-21 18:03:31    阅读次数:79
原型模式
名称: 原型模式(prototype) 问题: Specify the kind of objects to create using a prototypical instance, and create new objects by copying this prototype. 解决方案: 1 ...
分类:其他好文   时间:2020-06-21 13:42:56    阅读次数:56
C# linq group by 异常 -----MySqlException: Unknown column 'GroupBy1.K1' in 'field list'
使用Linq group by 查询 一般我们都会这样写Linq:var result = (from si in model.table group si by si.NumCores into grp orderby grp.Key select new CoreCount { Cores = ...
分类:数据库   时间:2020-06-21 10:10:46    阅读次数:100
LINQ与DLR的Expression tree
系列文章:LINQ与DLR的Expression tree(1): 简介LINQ与Expression treeLINQ与DLR的Expression tree(2): 简介DLRLINQ与DLR的Expression tree(3): LINQ与DLR及另外两个库的AST对比LINQ与DLR的Ex ...
分类:其他好文   时间:2020-06-20 23:52:42    阅读次数:58
Winform中Timer应用+ 随机字母-
Form1.CS using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using Syst ...
分类:Windows程序   时间:2020-06-20 21:59:32    阅读次数:89
C#窗体最大化最小化等比例缩放
不废话,直接代码 using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; usi ...
分类:Windows程序   时间:2020-06-20 19:27:22    阅读次数:78
抽象工厂模式
名称: 抽象工厂模式(Abstract Factory Pattern) 问题: Provide an interface for creating families of related or dependent objects without specifying their concrete ...
分类:其他好文   时间:2020-06-20 19:16:37    阅读次数:66
C#加密解密
1、MD5加密 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; usi ...
分类:Windows程序   时间:2020-06-20 00:58:17    阅读次数:67
存储过程(增删改查)
**个人项目所建的表,可根据实际情况更改表数据 ++++++++++++++++存储过程查询分页+++++++++++++++++++++++++++++++++++--if(exists(select * from sys.objects where name='proc_UserShowPage ...
分类:其他好文   时间:2020-06-18 21:33:46    阅读次数:64
10076条   上一页 1 ... 24 25 26 27 28 ... 1008 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!