10 2011 档案

[转] 微软轻量级 Web 开发平台 WebMatrix 发布
摘要: Microsoft WebMatrix 是一个全新的 Web 开发平台,今天开始正式发布第一个版本供公众使用。区别于现有的开发平台,WebMatrix 的特点是一站式和简化的开发过程,主要包含以下几大核心:IIS Developer Express: 这是一个轻量级的免费 Web 服务器,安装简便,支持目前所有的 Windows 版本,并且兼容完整版的 IIS 7.5 服务器。SQL Server Compact Edition: 一款基于文件的轻量级免费数据库,体积小巧,安装简便,可以集成到 ASP.NET 等众多微软开发场景中使用。使用SSCE平台的成本极低,并且可以很方便的迁移到 SQL阅读全文

posted @ 2011-10-19 14:37 .Robot 阅读(34) | 评论 (0) 编辑

LINQ ForEach
摘要: public static void ForEach<T>(this IEnumerable<T> items, Action<T> action) { foreach (var item in items) { action(item); } ...阅读全文

posted @ 2011-10-18 15:43 .Robot 阅读(197) | 评论 (0) 编辑

Error: The version of SQL Server in use does not support datatype 'datetime2
摘要: I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error. I specifically did not use an...阅读全文

posted @ 2011-10-13 09:39 .Robot 阅读(176) | 评论 (0) 编辑