浅谈Linq查询
一.var关键字
在学习linq查询之前,我们先来学习var关键字的用法,看看微软官方的定义:从visual c#3.0开始,在方法范围声明的变量可以具有隐式“类型” var
。隐式类型的局部变量是强类型的,就像您自己声明了类型一样,但编译器确定了类型。从这个定义我们有两点需要注意,首先用var申明的隐式类型的局部变量是强类型的,二.var的推断类型是在编译的时候确定的,不是在运行的时候。
再看看微软官方给出的两个例子:
// example #1: var is optional when // the select clause specifies a string string[] words = { "apple", "strawberry", "grape", "peach", "banana" }; var wordquery = from word in words where word[0] == 'g' select word; // because each element in the sequence is a string, // not an anonymous type, var is optional here also. foreach (string s in wordquery) { console.writeline(s); }
var
允许使用但不是必需的,因为查询结果的类型可以明确地表示为ienumerable<string>
// example #2: var is required because // the select clause specifies an anonymous type var custquery = from cust in customers where cust.city == "phoenix" select new { cust.name, cust.phone }; // var must be used because each item // in the sequence is an anonymous type foreach (var item in custquery) { console.writeline("name={0}, phone={1}", item.name, item.phone); }
var
允许结果是匿名类型的集合,除了编译器本身之外,不能访问该类型的名称。使用var
消除了为结果创建新类的要求。
在第二个例子中假如不用var关键字的话我们就要事先创建好类,查询条件一变,查询结果就跟着改变,又要定义新的类型,linq查询的条件是随意变化的,不可能条件一变就声明新的类型,所以var关键字对linq查询至关重要的。
二.匿名类
创建一个对象一定要先定义这个对象的类型么,当然不是,我们可以通过匿名类的方式来创建对象,看看下面这段代码:
static void main(string[] args) { string name = "tom"; int age = 20; var obj = new { name,age }; console.writeline(obj.age.tostring() + obj.name.tostring()); console.read(); }
三.linq查询
linq查询实质是操作集合的一系列扩展方法,linq特性的核心接口是ienumerable,只有实现了ienumerable接口的集合才可以用linq查询。
linq的查询包含三种方法:
1.使用语法查询,这种查询方式和sql语句比较像:
// query #1. list<int> objint = new list<int> { 1, 2, 5, 4, 3, 9, 7, 6, 11, 29, 99 }; var result = from i in objint where i > 3 && i < 20 orderby i descending select i; foreach (var item in result) { console.writeline(item.tostring()); } console.read(); // query #2. list<string> objliststring = new list<string> { "abc", "acd", "bcv", "bcd", "cnh", "ckl", "glk" }; var strresult = from str in objliststring group str by str[0]; foreach (var item in strresult) { foreach (var item1 in item) { console.writeline(item1); } } console.read(); }
2.使用扩展方法查询:
某些方法查询必须表现为方法调用,最常见的此类方法是可返回单一数值的方法,例如 sum、max、min、average 等。 这些方法在任何查询中都必须始终最后一个调用,因为它们只表示单个值,不能用作其他查询操作的源。
扩展方法select的使用:
static void main(string[] args) { int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 }; var list = nums.select(item => item * item); foreach (int item in list) { console.writeline(item); } console.readline(); }
扩展方法where的使用:
static void main(string[] args) { int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 }; var list = nums .where(item => item % 2 == 0) .select(i => i * i); console.readline(); }
扩展方法orderby的用法:
static void main(string[] args) { int[] nums = { 1, 7, 2, 6, 5, 4, 9, 13, 20 }; var list = nums .where(item => item % 2 == 0) .select(i => i * i) .orderby(item => item); foreach (int i in list) { console.writeline(i); } console.readline(); }
static void main(string[] args)
{
string[] nums = { "张勇", "王琦", "刘静", "赵鑫鑫",
"杜丽", "马俊才", "那英", "成龙", };
var list = nums
.where(item => item.length == 2)
.select(item => item)
.orderbydescending(item => item.substring(0, 1));
foreach (string item in list)
{
console.writeline(item);
}
console.readline();
}
3.结合使用查询语法和方法语法:
int numcount1 = (from num in numbers1 where num < 3 || num > 7 select num).count();
由于查询 返回单个值而不是集合,因此查询立即执行。