11 2007 档案

摘要: 周融,2007 年 7 月(C) 2001-2007 All Rights Reserved. Microsoft SQL Server 2008 对 T-SQL 语言进行了进一步增强。为了让开发人员尽快了解这些变化,我们针对 2007 年 6 月 CTP 版本的 SQL Server 2008 中的 T-SQL 语言的新增功能进行了分析和尝试。本文描述自 SQL Server 2008 CTP1...阅读全文
posted @ 2007-11-20 15:44 ccs 阅读(138) | 评论 (0) 编辑
摘要: 自动属性 public string Name{get;set;}
匿名类型 new{}
对象初始化器 new{Name=""}
扩展方法 static class{static void Method(this Type type){;}}
lambda表达式 (c => c >= 26)
隐式类型局部变量 var
IEnumbrable.Where books.Where(book => book.Name == "").Select(book => book.Price)
查询表达式 from book in books where book.Name == "" select book.Price阅读全文
posted @ 2007-11-19 13:58 ccs 阅读(197) | 评论 (0) 编辑