码迷,mamicode.com
首页 >  
搜索关键字:linq    ( 6890个结果
C# SqlHelper
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
扩展方法和Enumerable
.NET中扩展方法和Enumerable(System.Linq) LINQ是我最喜欢的功能之一,程序中到处是data.Where(x=x>5).Select(x)等等的代码,她使代码看起来更好,更容易编写,使用起来也超级方便,foreach使循环更加容易,而不用for int..,linq用起来那 ...
分类:编程语言   时间:2019-06-29 00:56:07    阅读次数:122
Web--TypeConverter
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
Web--Utils
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
Web--Response
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
LinqMethod 实现 LeftJoin
有时候我们想实现 leftJoin 但是 Linq 提供的 Join 相当于是 `INNER JOIN`,于是就打算实现一个 `LeftJoin` 的扩展。 ...
分类:其他好文   时间:2019-06-26 19:30:20    阅读次数:150
C#操作xml文档增删改查(Linq to XML)
1.创建xml 创建的xml文档内容如下: 2.获取XML文档内容 以上的Customer类的属性和xml文档节点内容相对应 Customer类如下 3.向XML文档添加内容 4.修改XML文档内容 5.删除XML文档节点 6.通过指定值查询特定XML节点内容 7.结合以上方法做了一个MVC操作XM ...
分类:Windows程序   时间:2019-06-24 00:33:13    阅读次数:177
EF的连表查询Lambda表达式和linq语句(转)
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
.net 调用 winapi获取窗口句柄和内容
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2019-06-20 23:52:04    阅读次数:164
推荐一个 可以和 Entity Framework 媲美 的 国人 写的 ORM
https://github.com/2881099/FreeSql 扶摇直上,至强ORM只为自由编码;鹏程万里,至简Linq可使保留黑发;横批:FreeSql(诗人:Coder) 即兴赋诗一首 以上是 作者 在 QQ 群 里 发的 原文,,, FreeSql 这个 ORM (其实 作者 说 也不是 ...
分类:其他好文   时间:2019-06-18 20:10:53    阅读次数:138
6890条   上一页 1 ... 47 48 49 50 51 ... 689 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!