本文主要是对语言级集成查询或简称为LINQ做一个介绍,包括LINQ是什么,不是什么,并对它在语言特性方面做一个简短的回顾,然后举一些使用LINQ的实际例子进行说明。语言级集成查询是什么?在我过去写的大多数文章中,即使是最早的一篇文章(数据库独立的数据访问),也总是涉及到访问和操纵数据,通常,数据是存...
分类:
其他好文 时间:
2014-05-26 01:34:53
阅读次数:
251
using System;using System.Collections.Generic;using
System.ComponentModel;using System.Data;using System.Drawing;using
System.Linq;using System.Text;u...
分类:
其他好文 时间:
2014-05-26 00:40:38
阅读次数:
214
EntityFramework是什么?1.是对ADO.NET 更高封装的ORM
(对象关系映射)框架,跟Nhibernate类似2.用面向对象的方式来操作关系数据库3.目标: 提高开发效率,减轻维护工作4.原理LINQ to
Entities 和 Entity SQL : EF 的两种查询语言,前者...
分类:
其他好文 时间:
2014-05-25 22:21:12
阅读次数:
349
#第一种基于原生的JDBC的方式实现
private Integer insert(POJO entity, String table) throws SQLException {
String insertSQL = "INSERT INTO " + table + " (XXXX)VALUES(?,?,?,?,?,?,?,?)";
DataSource dataSource = Se...
分类:
系统相关 时间:
2014-05-25 20:45:20
阅读次数:
336
最近从技术支持转到开发岗,做Silverlight部分的开发,用的Prism+MVVM,框架由同事搭好,目前做的主要是功能实现,用到了一些东西,侧重于如何使用,总结如下:
1.UI控件与布局 2.MVVM 3.数据绑定 4.await/async 5.Linq查询 6.WCF RIA...
分类:
Web程序 时间:
2014-05-25 20:05:38
阅读次数:
346
using System;using System.Collections;using
System.Collections.Generic;using System.Linq; using System.Text;using
System.Threading.Tasks;namespace Con...
分类:
其他好文 时间:
2014-05-25 14:55:16
阅读次数:
160
using System;using System.Collections.Generic;using
System.Linq;using System.Web;namespace MvcTest.Extends{ /// /// 分页元素位置 ///
public en...
分类:
其他好文 时间:
2014-05-25 13:50:08
阅读次数:
476
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Web;using System.IO;using
NVelocity.App;using NVelocity...
分类:
其他好文 时间:
2014-05-24 13:17:32
阅读次数:
198
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Runtime.InteropServices;namespace
WindowsAPI{class CSha...
分类:
其他好文 时间:
2014-05-24 12:59:58
阅读次数:
366
最近项目中在用Linq
Distinct想要将重复的资料去除时,发现它跟Any之类的方法有点不太一样,不能很直觉的在呼叫时直接带入重复数据判断的处理逻辑,所以当我们要用某个成员属性做重复数据的判断时,就必需绕一下路,这边稍微将处理的方法做个整理并记录一下。
首先为了方便接下去说明,我们必须先来准备后...
分类:
其他好文 时间:
2014-05-24 09:24:04
阅读次数:
263