码迷,mamicode.com
首页 >  
搜索关键字:linq to objects    ( 10076个结果
.net下BerkeleyDB操作封装C#版(附单元测试)
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Runtime.Serialization.Formatters.Binary;using System.Text...
分类:数据库   时间:2014-05-26 06:18:47    阅读次数:443
ADO与ADO.Net
在介绍ADO.Net之前先让我们回顾一下在红皮书中学习的ADO的内容。      ADO(ActiveX Data Objects),我们称它为一种用于数据访问的对象模型,《VB.Net》视频中称它为用于存取资料库的物件集合。资料库就是数据,物件即对象。这样看来两种说法完全一样。提起ADO,我们只要问自己两个问题: 它是什么?  ——对象的集合干什么用的?——访问数据     这...
分类:Web程序   时间:2014-05-26 04:08:59    阅读次数:327
LINQ——语言级集成查询入门指南(1)
本文主要是对语言级集成查询或简称为LINQ做一个介绍,包括LINQ是什么,不是什么,并对它在语言特性方面做一个简短的回顾,然后举一些使用LINQ的实际例子进行说明。语言级集成查询是什么?在我过去写的大多数文章中,即使是最早的一篇文章(数据库独立的数据访问),也总是涉及到访问和操纵数据,通常,数据是存...
分类:其他好文   时间:2014-05-26 01:34:53    阅读次数:251
【C#】浏览器源代码
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
建立dblink(database link)
database linke是建立一个数据库到另一个数据库的路径的对象,通过database link可以允许查询远程表,我理解可以算作一种分布式数据库的用法。 database link是单向连接,既然它是一种对象,那自然可以在xxx_objects表中查询到相关的信息。建立database link前需要明确几个事情: 1、确认从建立方的server可以访问远程数据库。 2、需要...
分类:数据库   时间:2014-05-24 23:38:45    阅读次数:445
【LeetCode】Sort Colors
题目 Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the i...
分类:其他好文   时间:2014-05-24 20:30:21    阅读次数:342
NVelocity 类操作模板
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
as3+java+mysql(mybatis) 数据自动工具(三)
介绍一下数据类配置,该数据类配置主要用于需要将数据库 mysql 数据转换成 java 对象,再转换为 as3 对象的数据类配置文件为 xml 格式。配置中只能有一个根节点 objects,每个子节点 object 代表一个数据类,object 的每个子节点 field 代表该数据类的一个属性obj...
分类:数据库   时间:2014-05-24 09:58:18    阅读次数:352
Linq使用Distinct删除重复数据时如何指定所要依据的成员属性zz
最近项目中在用Linq Distinct想要将重复的资料去除时,发现它跟Any之类的方法有点不太一样,不能很直觉的在呼叫时直接带入重复数据判断的处理逻辑,所以当我们要用某个成员属性做重复数据的判断时,就必需绕一下路,这边稍微将处理的方法做个整理并记录一下。 首先为了方便接下去说明,我们必须先来准备后...
分类:其他好文   时间:2014-05-24 09:24:04    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!