
Linq
Linq
吉普赛的歌
这个作者很懒,什么都没留下…
展开
-
Linq : [6]
None原创 2011-05-11 21:24:00 · 769 阅读 · 0 评论 -
Linq: [7]
None原创 2011-05-11 21:52:00 · 752 阅读 · 0 评论 -
Linq练习题
1、查询Student表中的所有记录的Sname、Ssex和Class列。select sname,ssex,class from studentLinq: from s in Students select new { s.SNAME, s.SSEX, s.CLASS }Lambda: Students.Select( s => new { SNAME = s.SNAME,SSE原创 2011-04-27 11:19:00 · 2117 阅读 · 0 评论 -
[转]Linq 之Expression Tree再思考
一、 Expression Tree 定义根据MSDN对Expression Tree的描述表达式目录树是一种数据结构,树中的每个节点都表示一个表达式,C#的语法定义为public sealed class Expression :LambdaExpression由定原创 2011-05-12 21:49:00 · 4841 阅读 · 0 评论 -
list 去重复项
msdnusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Test{ public enum Id { Big = 1, Middle = 2, Small = 3 }原创 2012-12-15 21:23:05 · 1148 阅读 · 0 评论 -
Lambda表达式摘录
原文:点击打开链接转载 2013-10-25 11:16:01 · 903 阅读 · 0 评论