stand on the shoulders of giants
上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: 上一篇写的有些杂乱,有点事无巨细的感觉。这篇还是简洁为主。 1. BLL将TableAdapter里面的方法进一步包装,例如 ProductsBLL.GetProducts(), 另外各个方法应该有必要的逻辑,比如不同的人有不同的权限,返回的产品列表应该不一样,等等。。。 2. .NET 2.0增加了nullable types,在函数的参数列为 int?x 的形式,表示x可以为空 3. ... 阅读全文
posted @ 2008-11-30 14:36 DylanWind 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 给Dll添加一个Config文件是不行的. 是因为.NET一般只允许将Running application和一个Config绑定。 如何使用Dll的config文件? 阅读全文
posted @ 2008-11-28 17:11 DylanWind 阅读(983) 评论(2) 推荐(0) 编辑
摘要: DataRow是对应于DataTable的;DataRowView是对应于DataView的; 阅读全文
posted @ 2008-11-26 16:40 DylanWind 阅读(7990) 评论(1) 推荐(1) 编辑
摘要: With Visual Studio, creating a DAL based on Typed DataSets is a task that can be accomplished in 10-15 minutes without writing a line of code 阅读全文
posted @ 2008-11-21 17:08 DylanWind 阅读(506) 评论(0) 推荐(0) 编辑
摘要: Scott Mitchell ASP.NET 阅读全文
posted @ 2008-11-21 13:39 DylanWind 阅读(272) 评论(0) 推荐(0) 编辑
摘要: Samantha Sang 77年成名作 使人平静 阅读全文
posted @ 2008-11-20 13:36 DylanWind 阅读(251) 评论(0) 推荐(0) 编辑
摘要: From Simple to Grace! 阅读全文
posted @ 2008-11-19 14:57 DylanWind 阅读(8571) 评论(4) 推荐(3) 编辑
摘要: 在软件系统中,经常面临着“某个对象”的创建工作,由于需求的变化,这个对象的具体实现经常面临着剧烈的变化,但是它却拥有比较稳定的接口。如何应对这种变化?提供一种封装机制来隔离出“这个易变对象”的变化,从而保持系统中“其它依赖该对象的对象”不随着需求的改变而改变? 阅读全文
posted @ 2008-11-18 14:40 DylanWind 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 在软件系统中,经常面临着“一系列相互依赖的对象”的创建工作;同时由于需求的变化,往往存在着更多系列对象的创建工作。如何应对这种变化?如何绕过常规的对象的创建方法(new),提供一种“封装机制”来避免客户程序和这种“多系列具体对象创建工作”的紧耦合?这就是我们要说的抽象工厂模式。 阅读全文
posted @ 2008-11-12 15:29 DylanWind 阅读(394) 评论(0) 推荐(0) 编辑
摘要: DSL tools and Oslo 阅读全文
posted @ 2008-11-11 10:16 DylanWind 阅读(418) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页