委托相当于JavaScript中的闭包,c++中的函数指针。 c#为了引进这个函数指针,将其进行包装成“委托”,同时将非托管的变成托管的。 1.最初的委托该怎么用 弊端:写的代码量过多,还要写一个显示的方法(Run)。 2.匿名委托 直接将方法体赋予委托实例。 3.lambda表达式 s是参数,只有 ...
分类:
其他好文 时间:
2019-12-03 20:14:00
阅读次数:
88
背景: 主流程表中包含员工ID及流程类型ID,在页面查看流程是需要显示员工姓名及流程名称 操作: //先进行分页处理原始数据 var result = from p in _dbContext.Set<BeWorkflowContent>() select p; if (searchWhere != ...
分类:
Web程序 时间:
2019-12-03 11:42:05
阅读次数:
122
Where 根据给定的谓词对序列进行过滤 Select 指定要包含一个对象或对象的一部分 SelectMany 一种查询类型,返回集合的集合。该方法将这些结果合并为一个单独的集合 Take 接受一个输入参数COUNT,返回序列中的前count个对象 skip 接受一个输入参数count,跳过序列中的 ...
分类:
其他好文 时间:
2019-12-01 13:52:26
阅读次数:
92
重要事项: 子句必须按照一定的顺序出现 from子句和select。。。group子句这两部分是必须的 其他子句是可选的 在LINQ查询表达式中,select子句在表达式最后。 可以后任意多的from。。。let。。。where子句 from 子句 必须的 from。。。let。。。where 子句 ...
分类:
其他好文 时间:
2019-11-30 00:12:56
阅读次数:
68
LINQ查询可以返回两种类型的结果 枚举和标量(scalar)的单一值 1 namespace ConsoleApplication46 2 { 3 class Program 4 { 5 static void Main(string[] args) 6 { 7 int[] numbers = { ...
分类:
其他好文 时间:
2019-11-30 00:01:36
阅读次数:
107
namespace ConsoleApplication45 { class Program { static void Main(string[] args) { int[] numbers = { 2, 5, 28, 31, 17, 16, 42 }; var numsQuery = from ...
分类:
其他好文 时间:
2019-11-29 22:18:54
阅读次数:
91
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
using System; using TestDapper.Common; using Dapper; using System.Data.SqlClient; using System.Collections.Generic; using System.Linq; using System.Re... ...
分类:
移动开发 时间:
2019-11-28 19:30:36
阅读次数:
226
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public part... ...
分类:
Web程序 时间:
2019-11-28 11:48:24
阅读次数:
81
/* * 保存原理 * 将LISTVIEW视为一行一行的字符串 * 将所有的行合并成一个字符串 然后保存为TXT文件 * * 而每行又是由 几个 子项组成,先把子项连接成字符串 * 2019年11月27日 18:03:17 */ ...
分类:
其他好文 时间:
2019-11-27 18:48:58
阅读次数:
82