using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:
其他好文 时间:
2019-05-07 17:03:18
阅读次数:
138
1 public string XmlString() 2 { 3 XDocument xdoc = new XDocument( 4 new XDeclaration("1.0","UTF-8","yes"), 5 new XElement("Root", 6 new XElement("Chil... ...
分类:
其他好文 时间:
2019-05-07 17:03:00
阅读次数:
134
1为什么要用集合 数组的局限性:数组元素个数固定,数组一旦定位就无法改变元素总数,如果有需求变化,则必须修改源码; 如果初始化元素总数非常大,则会造成空间浪费。 集合的特点:根据需要动态增加个数,没有限制。 2泛型集合List<T> <T>表示泛型,T是Type的简写,表示当前不确定具体类型。 可以 ...
此例子是使用LINQ2Dapper封装,效率优于EntityFramwork,并且支持.NetFramework和.NetCore框架,只依赖于Dapper 需要先引用包Kogel.Dapper.Extension和Kogel.Dapper.Extension.MsSql(目前还支持Oracle), ...
分类:
移动开发 时间:
2019-05-03 18:33:32
阅读次数:
999
1.引用easyui样式及脚本文件 2.数据库创建表(自联表)及数据建模(Code First) 数据建模:Models =》添加=》新建项=》左侧选择Date=》ADO.NET 实体数据模型=》添加=》来自数据库的Code First=》选择对应数据库及要建模的表 3.前端js和h5代码 4.新建 ...
分类:
其他好文 时间:
2019-05-02 23:27:44
阅读次数:
235
一、SQL Server 分页 模拟测试 c#中linq分页查询 看来代码的优化在某些时候是非常重要的…… 二、SQLServer、Oracle获取数据库、表、表里字段、类型、注释 三、Oracle: ...
分类:
数据库 时间:
2019-05-02 18:59:24
阅读次数:
148
using PLog; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using System.Runtime... ...
使用System.Collections.Concurrent命名空间下的类型来用于并行循环体内: PLinq(Linq的并行计算) 上面介绍完了For和ForEach的并行计算盛宴,微软也没忘记在Linq中加入并行计算。下面介绍Linq中的并行计算。 4.0中在System.Linq命名空间下加入 ...
1、linq 写的不是很好总结一下 ①、数据 ②、linq ③、lambda 2、第二种 ...
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 ...
分类:
其他好文 时间:
2019-04-22 22:56:50
阅读次数:
160