企业应用系统架构与设计模式 (2).ppt

  1. 1、本文档共49页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* TechEd 2002 * * TechEd 2002 * * TechEd 2002 * * TechEd 2002 * The Data Access Application Block is a managed component that exposes classes with methods to help you execute commands against a Microsoft SQL Server database in a robust and efficient manner. It incorporates Microsoft ADO.NET data access best practices and uses data access patterns identified in the .NET Data Access Architecture Guide (/library/en-us/dnbda/html/daag.asp). The main elements of the Data Access Application Block are illustrated in the slide. The SqlHelper class provides a set of static methods that you can use to execute a variety of different command types against the database. The SqlHelperParameterCache class provides command parameter caching functionality used to improve performance. This is used internally by a number of the Execute methods (specifically, the overrides that are designed to execute only stored procedures). It can also be used directly by the data access client to cache specific parameter sets for specific commands. The SqlHelper and SqlHelperParameterCache classes provide Shared (Visual Basic) / static (C#) methods only, and they contain a private default constructor to deliberately prevent objects being created. To call a Shared / static method, use the class name to make the method call, as illustrated in the following code sample. [Visual Basic] Imports System Imports System.Data Imports Microsoft.ApplicationBlocks.Data ... Dim result As Integer = SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, StoredProcName) [C#] using System; using System.Data; using Microsoft.ApplicationBlocks.Data; ... int result = SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, StoredProcName ); * TechEd 2002 * * TechEd 2002 * * TechEd 2002 * 設計 Business Entity 設計 DataSet CartDS CategoryDS ProductDS CustomerDS 設計Business Rule Component Facade Service interface設計模式 Fa?ade design pattern 目标:子系统提供单一接口给客户端 问题:子系统内的class分别提供部分功能,客户端必须呼叫个别的class,致使两层间连结复杂,不易维护,违反Encap

文档评论(0)

qwd513620855 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档