码迷,mamicode.com
首页 >  
搜索关键字:linq 表达式树    ( 7079个结果
EFcore 修改部分字段
using System.Linq.Expressions;//用表达式树,部分字段 Expression<Func<CourseSchedule, object>>[] updatedProperties = { p => p.createtime, }; 调用Helper类 _courseSch ...
分类:其他好文   时间:2020-05-15 00:15:44    阅读次数:268
LINQ
简介 LINQ(Language Integrated Query,语言集成查询)在C 编程语言中集成了查询语法,可以用相同的语法访问不同的数据源。LINQ提供了不同数据源的抽象层,所以可以使用相同的语法。 子句from、where、orderby、descending和select都是这个查询中预 ...
分类:其他好文   时间:2020-05-12 09:34:27    阅读次数:60
C#中相等性判断
我们在想对一个可枚举的对象集合进行去重操作时,一般第一个想到的就是就是Linq的Distinct方法。 先定义一个类,然后使用Distinct方法去重。 然而去重得到的distinct集合的Count依然为二,集合里依然存在两个Adam。 实际上,Distinct方法内进行比较的是声明的引用,而不是 ...
分类:Windows程序   时间:2020-05-12 09:31:43    阅读次数:72
微信小程序如何访问带有Token安全认证的API
展开微信小程序访问Token安全验证的API接口API//添加一个自定义过滤器using Newtonsoft.Json;using System;using System.Collections.Generic;using System.IO;using System.Linq;using Sys ...
分类:微信   时间:2020-05-11 01:17:01    阅读次数:446
C#用Linq对列表/集合进查询
namespace System.Linq; 使用&&进行多条件查询 也可以直接使用Lambda表达式+扩展方法的写法: ...
分类:Windows程序   时间:2020-05-10 19:07:47    阅读次数:58
公司的Excel导出
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using FineUICore; using Microsoft.AspNetCore.Authoriz ...
分类:其他好文   时间:2020-05-06 21:34:28    阅读次数:86
WPF 加减乘除计算器
原文:WPF 加减乘除计算器 小玩意,毫无任何难度。 cs: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; usi... ...
分类:Windows程序   时间:2020-05-06 01:00:22    阅读次数:146
C# 建造者设计模式
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace FactoryMod ...
分类:Windows程序   时间:2020-05-05 18:16:57    阅读次数:83
C# 抽象工厂的设计模式
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FactoryMode { public abs ...
分类:Windows程序   时间:2020-05-05 12:41:03    阅读次数:90
线程安全小练习
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 ...
分类:编程语言   时间:2020-05-04 21:03:41    阅读次数:73
7079条   上一页 1 ... 17 18 19 20 21 ... 708 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!