摘要: http://www.microsoft.com/china/learning/start/start-career.mspx  看看吧,应该会对大家又帮助的. 阅读全文
posted @ 2009-10-30 07:58 卜海清 阅读(315) 评论(0) 推荐(0)
摘要: http://www.hanselman.com/blog/VisualStudioProgrammerThemesGallery.aspx   对于看惯了VS2008传统界面的朋友,可以换换口味了。 阅读全文
posted @ 2009-10-29 23:43 卜海清 阅读(339) 评论(0) 推荐(0)
摘要: 今天看一篇关于介绍如何在.NET下对Google Calendar API进行操作的文章。 Link: http://www.cnblogs.com/SkyD/archive/2009/07/23/1529037.html    有空要好好学习一下。 另外也可以从Google的官网上找到不少资料: http://code.google.com/apis/calendar/... 阅读全文
posted @ 2009-10-14 19:52 卜海清 阅读(441) 评论(0) 推荐(0)
摘要: 最近要准备系统的学习Sharepoint相关的技术。现在处于资料的收集整理阶段。 今天看到一博客,觉得挺好的,可以给自己引导。 http://codeyun.spaces.live.com/Blog/cns!AFF1E1A73B8A3621!142.entry 阅读全文
posted @ 2009-10-14 16:48 卜海清 阅读(245) 评论(0) 推荐(0)
摘要: 请参看下文链接: http://lancefisher.net/blog/archive/2008/05/07/linq-to-sql---case-statements.aspx 阅读全文
posted @ 2009-09-14 23:54 卜海清 阅读(488) 评论(0) 推荐(0)
摘要: 原文: http://weblogs.asp.net/podwysocki/archive/2009/02/26/functional-c-fun-with-folds.aspx   Recently on Twitter, I’ve stated that many times when explaining these functional programming terms t... 阅读全文
posted @ 2009-09-11 23:48 卜海清 阅读(446) 评论(0) 推荐(0)
摘要: DECLARE @str  NVARCHAR(10) SET @str = '1, 2, 3, ' SET @str = LEFT(@str, LEN(@str)- 2) SELECT @str               Answer: '1, 2, ' (space after comma) Exp... 阅读全文
posted @ 2009-09-11 22:41 卜海清 阅读(188) 评论(0) 推荐(0)
摘要: This is very simple but effective script. It list all the table without primary keys. USE DatabaseName; GO SELECT SCHEMA_NAME(schema_id) AS SchemaName,name AS TableName FROM sys.tables WHERE OBJECTPRO... 阅读全文
posted @ 2009-08-28 02:19 卜海清 阅读(182) 评论(0) 推荐(0)
摘要: SQL Server data type          CLR data type (SQL Server)    CLR data type (.NET Framework)  varbinary     ... 阅读全文
posted @ 2009-08-28 00:06 卜海清 阅读(234) 评论(0) 推荐(0)
摘要: The WCF/WF 4 training kit contains a set 6 hands on labs that will help you quickly get up to speed with Windows Communication Foundation (WCF) and Windows Workflow Foundation (WF) in .NET 4. The labs... 阅读全文
posted @ 2009-08-26 09:49 卜海清 阅读(667) 评论(0) 推荐(0)