LINQ是什么?
它是Language Integrated Query。
当我们要对数据库表进行查询的时候,我们一定会编写"select * from sometable where ID = .."的语句。好,那我们现在根据LINQ的语法,完全可以将我们熟悉的SQL中像"select","from","where"等语句在.NET Framework环境中顺利使用并且大大提高开发的效率。
下面我就牛刀小试,做个demo看看。
1. 先下载LinQ框架
现在最新版本是2006年5月发布"Orcas CTP", 下载地址(这里 )
2. 下载安装待完毕。
3. 新建一个"LINQ Console Application"项目。
4. 输入代码如下:
2
using
System;3
using
System.Collections.Generic;4
using
System.Text;5
using
System.Query;6
using
System.Xml.XLinq;7
using
System.Data.DLinq;8

9
namespace
LINQConsoleApplication110

{11
class Program12

{13
static void Main(string[] args)14

{15

string[] aBunchOfWords =
{"One","Two", "Hello", "World", 16

17
"Four", "Five"};18
var result = 19
from s in aBunchOfWords // query the string array 20
where s.Length == 5 // for all words with length = 521
select s; // and return the string22

foreach (var s in result)
{23
Console.WriteLine(s); //print24
}25
}26
}27
}
28

29
运行结果如下:
Hello
World
print any key to continue ...
这是我学习LINQ的第一个小程序,深感LINQ对编程语言带来的改变。将此例子给大家共同学习!
原帖http://www.cnblogs.com/Ring1981/archive/2006/06/09/421795.html
本文介绍LINQ(Language Integrated Query)的基础用法,并通过一个简单示例展示了如何利用LINQ查询字符串数组中的特定元素。
986

被折叠的 条评论
为什么被折叠?



