码迷,mamicode.com
首页 >  
搜索关键字:linq to entities    ( 7131个结果
第 2 章 编写 C# 程序
2.1 Visual Studio 2005开发环境2.2 控制台应用程序 试试看:创建一个简单的控制台应用程序using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace C....
分类:其他好文   时间:2014-06-07 03:00:19    阅读次数:241
C#—委托分析
1.简单委托示例using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SimpleTest{ class Program { private d...
分类:其他好文   时间:2014-06-03 09:04:42    阅读次数:266
Jquery.linq 使用示例
/*Linq JS*/ //range var aa = Enumerable.range(1, 10).toArray(); var kk = Enumerable.range(1, 10, 3).toArray(); //select kk = Enumerabl...
分类:Web程序   时间:2014-06-03 08:13:47    阅读次数:255
C#生成字母和数字组成的随机文件
代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;using System.Collections;using Syste...
分类:其他好文   时间:2014-06-03 07:38:59    阅读次数:208
json的js和C#操作
C#端的WebService接口接收json格式数据,处理后以json格式返回resultusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Service...
分类:Web程序   时间:2014-05-31 17:30:19    阅读次数:249
C#复制所选目录下所有文件夹和文件
代码如下:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.T...
分类:其他好文   时间:2014-05-30 06:48:10    阅读次数:200
C# : new 和 overrider 的区别
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication2{ class...
分类:其他好文   时间:2014-05-30 05:34:16    阅读次数:272
SqlHelper 带详细中文注释
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 //对数据库进行操作引入命名空间 6 using System.Data;...
分类:数据库   时间:2014-05-30 03:34:30    阅读次数:287
SQL /LINQ/Lamda
SQLLINQLambdaSELECT *FROM HumanResources.Employeefrom e in Employeesselect eEmployees .Select (e => e)SELECT e.LoginID, e.JobTitleFROM HumanResources....
分类:数据库   时间:2014-05-29 12:24:05    阅读次数:317
LINQ语句中的.AsEnumerable() 和 .AsQueryable()的区别【转】
在写LINQ语句的时候,往往会看到.AsEnumerable() 和 .AsQueryable() 。例如:string strcon ="Data Source=.\\SQLEXPRESS;Initial Catalog=Db_Example;Persist Security Info=True;...
分类:其他好文   时间:2014-05-28 16:07:41    阅读次数:418
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!