码迷,mamicode.com
首页 >  
搜索关键字:linq    ( 6890个结果
JWT帮助类(相关方法)
注意:首先安装JWT程序包 using System;using System.Collections.Generic;using System.Linq;using System.Web; using JWT;using JWT.Algorithms; //加密算法using JWT.Builde ...
分类:其他好文   时间:2020-06-18 16:04:10    阅读次数:75
Thinking in LINQ, Chapter 1, Thinking Functionally
1. 理解函数编程 把函数理解成一个功能的单元,一个大的功能,可以有若干不同的小功能单元组成。 把大的需要,拆成小的功能。 把注意力集中在要做什么,然后如何精确的得到自己要做的。 2. 使用Func<> 示例: Func<int, int> f = x => x + 1; Func<int, int ...
分类:其他好文   时间:2020-06-17 20:36:30    阅读次数:56
工具类--JsonHelper
using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; using System.Collections.Generic; using System.Data; namespace Co ...
分类:Web程序   时间:2020-06-17 12:38:41    阅读次数:85
多线程使用
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Data; namespace MSCTool { p ...
分类:编程语言   时间:2020-06-16 23:16:15    阅读次数:102
C# TryParse
https://www.cnblogs.com/dream-game/p/5532506.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T... ...
分类:Windows程序   时间:2020-06-16 18:19:49    阅读次数:72
C#类(二):继承和多态(EduCoder实训题目)
第1关:继承 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace K1 { public abstr ...
分类:Windows程序   时间:2020-06-15 22:58:40    阅读次数:86
2.3 IQueryable与 IEnumerable的区别
IEnumerable 接口 公开枚举器,该枚举器支持在指定类型的集合上进行简单迭代。 也就是说实现了此接口的object,就可以直接使用foreach遍历此object IQueryable接口 它继承了 IEnumerable接口 二者区别 static void Main(string[] a... ...
分类:编程语言   时间:2020-06-15 21:02:47    阅读次数:54
C#函数拓展(EduCoder实训题目)
第1关:结构函数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace H1 { class Prog ...
分类:Windows程序   时间:2020-06-15 16:01:52    阅读次数:121
C#函数(EduCoder实训题目)
第1关:写一个函数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace G1 { class Pro ...
分类:Windows程序   时间:2020-06-15 15:32:16    阅读次数:116
关于linq/lambda中如何使用DataDiff的问题
//首先linq是不支持DateTime.DateDiff的,会报错,可以用SqlFunctions.DateDiff代替,与sql语法一样 //示例如下 获取当天登录过的用户列表 var gameList = this.dbUsers.Where(t => SqlFunctions.DateDif ...
分类:其他好文   时间:2020-06-14 18:34:23    阅读次数:48
6890条   上一页 1 ... 13 14 15 16 17 ... 689 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!