using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using S... ...
分类:
数据库 时间:
2019-06-29 13:16:33
阅读次数:
108
.NET中扩展方法和Enumerable(System.Linq) LINQ是我最喜欢的功能之一,程序中到处是data.Where(x=x>5).Select(x)等等的代码,她使代码看起来更好,更容易编写,使用起来也超级方便,foreach使循环更加容易,而不用for int..,linq用起来那 ...
分类:
编程语言 时间:
2019-06-29 00:56:07
阅读次数:
122
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tas... ...
分类:
Web程序 时间:
2019-06-28 18:17:16
阅读次数:
117
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tas... ...
分类:
Web程序 时间:
2019-06-28 18:02:09
阅读次数:
130
using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ... ...
分类:
Web程序 时间:
2019-06-28 17:56:38
阅读次数:
123
有时候我们想实现 leftJoin 但是 Linq 提供的 Join 相当于是 `INNER JOIN`,于是就打算实现一个 `LeftJoin` 的扩展。 ...
分类:
其他好文 时间:
2019-06-26 19:30:20
阅读次数:
150
1.创建xml 创建的xml文档内容如下: 2.获取XML文档内容 以上的Customer类的属性和xml文档节点内容相对应 Customer类如下 3.向XML文档添加内容 4.修改XML文档内容 5.删除XML文档节点 6.通过指定值查询特定XML节点内容 7.结合以上方法做了一个MVC操作XM ...
EF的连表查询Lambda表达式和linq语句 var lst = from c in db.Blogs join p in db.Posts on c.Id equals p.BlogId where p.Id==1 select c; var lst1 = db.Blogs.Join(db.Po ...
分类:
其他好文 时间:
2019-06-23 20:47:13
阅读次数:
124
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
https://github.com/2881099/FreeSql 扶摇直上,至强ORM只为自由编码;鹏程万里,至简Linq可使保留黑发;横批:FreeSql(诗人:Coder) 即兴赋诗一首 以上是 作者 在 QQ 群 里 发的 原文,,, FreeSql 这个 ORM (其实 作者 说 也不是 ...
分类:
其他好文 时间:
2019-06-18 20:10:53
阅读次数:
138