上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 54 下一页
摘要: 需要使用到DataContext的嵌套服务代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Data.Linq;usingSystem.Configuration;namespaceCsharpTrainer.Linq.Service.Northwind{publicclassCascadeTableService{publicboolAddCascadeTables(CascadeAtableA,List<CascadeB>tablesB,L 阅读全文
posted @ 2012-03-22 16:02 Master HaKu 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 1. 安装Ruby语言 apt-get install ruby libzlib-ruby rdoc ri irb检查安装结果 ruby -v2. 安装Ruby语言相关库apt-get install libruby libruby1.8 ruby1.8-dev libopenssl-ruby1.8检查安装结果irb 3. 安装Ruby语言软件包管理系统(Package Management System)RubyGems 下载http://rubyforge.org/frs/download.php/5207/rubygems-0.8.11.tgz 解压后从命令行进入rubygems-0.. 阅读全文
posted @ 2012-03-22 09:47 Master HaKu 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 问题: 添加dll引用后,可以在代码中引入log4net的命名空间,但是一编译,却又找不到了。解决: 点击项目属性->查看应用程序,目标框架->把".NET FrameWork 4 Client Profile"改成".NET FrameWork 4" 阅读全文
posted @ 2012-03-20 15:11 Master HaKu 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 1. 简单字符串格式化 format = "Hello, how are you doing %s %s!"values = ("David", "Gu")print format % values Result: Hello, how are you doing David Gu! format  阅读全文
posted @ 2012-03-19 17:01 Master HaKu 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1. Two Ways to create template WCF ServiceThere are a few built-in WCF service templates within Visual Studio 2010; twoof them are Visual Studio WCF Service Library and Visual Studio WCF ServiceApplication. 阅读全文
posted @ 2012-03-19 16:17 Master HaKu 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Conception Overview:It is a better option to host a WCF service within Internet Information Services Server(IIS) because IIS provides a robust, efficient, and secure host for the WCF services.IIS also has better thread and process execution boundaries handling (in additionto many other features) com 阅读全文
posted @ 2012-03-19 13:37 Master HaKu 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1. Hosting the service in a managed applicationWe can create a .NET managed application and host a WCF service inside theapplication. The hosting application can be a command-line application, a WindowsForms application, or a web application. This hosting method gives you full controlover the lifeti 阅读全文
posted @ 2012-03-19 10:00 Master HaKu 阅读(322) 评论(0) 推荐(0) 编辑
摘要: When the application first starts up (i.e., when Application_Start() runs), this codepopulates a global static RouteCollection object called RouteTable.Routes. That’s where theapplication’s routing configuration lives.MapRoute() adds an entry to the routing configuration.正常写法:routes.MapRoute("D 阅读全文
posted @ 2012-03-15 17:07 Master HaKu 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 列表示例1: (新建, 删除, 修改) # basic operation of listnames = ['David', 'George', 'Peter', 'Mark', 'ALice']print "Original List:"print namesdel names[1]print " 阅读全文
posted @ 2012-03-15 11:05 Master HaKu 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 原则1:DRY(Don't repeat yourself)即不要写重复的代码,而是用“abstraction”类来抽象公有的东西。如果你需要多次用到一个硬编码值,那么可以设为公共常量;如果你要在两个以上的地方使用一个代码块,那么可以将它设为一个独立的方法。SOLID设计原则的优点是易于维护,但要注意,不要滥用,duplicate 不是针对代码,而是针对功能。这意味着,即使用公共代码来验证OrderID和SSN,二者也不会是相同的。使用公共代码来实现两个不同的功能,其实就是近似地把这两个功能永远捆绑到了一起,如果OrderID改变了其格式,SSN验证代码也会中断。因此要慎用这种组合,不 阅读全文
posted @ 2012-03-14 17:40 Master HaKu 阅读(385) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 54 下一页