揭秘ADO.NET批注在编程中的重大意义

随着时代的发展,我们要学的东西越来越多,这里我们就共同学习学习ADO.NET批注类型化数据集。ADO.NET批注使您能够在不修改基础架构的情况下修改类型化 DataSet 中元素的名称。如果修改基础架构中元素的名称,则会使类型化 DataSet 引用不存在于数据源中的对象,并且会丢失对存在于数据源中的对象的引用。

利用批注,您可以使用更有意义的名称来自定义类型化 DataSet 中对象的名称,从而使代码更易于阅读,类型化 DataSet 更易于为客户端使用,同时保持基础架构不变。例如,Northwind 数据库中 Customers 表的以下架构元素会生成 CustomersRow 这一 DataRow 对象名称和一个名为 Customers 的 DataRowCollection。

 
 
  1.  name="Customers"> 
  2.  
  3.  
  4.  name="CustomerID" type="xs:string" minOccurs="0" /> 
  5.  
  6.  
  7.  

#T#DataRowCollection 名称 Customers 在客户端代码中是有意义的,但 DataRow 名称 CustomersRow 则会导致误解,因为它是单个对象。此外,在通常情况下,将不使用 Row 标识符来引用该对象,而仅将该对象当作 Customer 对象来引用。解决方案是为架构添加ADO.NET批注并标识 DataRow 和 DataRowCollection 对象的新名称。下面是上一架构的批注版本。

 
 
  1.  name="Customers" codegen:typedName="Customer" codegen:typedPlural="Customers"> 
  2.  
  3.  
  4.  name="CustomerID" type="xs:string" minOccurs="0" /> 
  5.  
  6.  
  7.  

将 typedName 的值指定为 Customer 将生成 DataRow 对象名称 Customer。将 typedPlural 的值指定为 Customers 则会保留 DataRowCollection 名称 Customers。
若要使用类型化 DataSet 批注,则必须在 XML 架构定义语言 (XSD) 架构中包含以下 xmlns 引用。

 
 
  1. xmlns:codegen="urn:schemas-microsoft-com:xml-msprop" 

下面是一个ADO.NET批注架构示例,它公开 Northwind 数据库的 Customers 表并包含与 Orders 表的关系。

 
 
  1.  version="1.0" encoding="utf-8"?> 
  2.  id="CustomerDataSet"   
  3. xmlns:codegen="urn:schemas-microsoft-com:xml-msprop" 
  4. xmlns=""   
  5. xmlns:xs="http://www.w3.org/2001/XMLSchema"   
  6. xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> 
  7.  name="CustomerDataSet" msdata:IsDataSet="true"> 
  8.  
  9.  maxOccurs="unbounded"> 
  10.  name="Customers" codegen:typedName="Customer" 
  11. codegen:typedPlural="Customers"> 
  12.  
  13.  
  14.  name="CustomerID" 
  15. codegen:typedName="CustomerID" type="xs:string" minOccurs="0" /> 
  16.  name="CompanyName" 
  17. codegen:typedName="CompanyName" type="xs:string" minOccurs="0" /> 
  18.  name="Phone" codegen:typedName="Phone" 
  19. codegen:nullValue="" type="xs:string" minOccurs="0" /> 
  20.  
  21.  
  22.  
  23.  name="Orders" codegen:typedName="Order" 
  24. codegen:typedPlural="Orders"> 
  25.  
  26.  
  27.  name="OrderID" codegen:typedName="OrderID" 
  28. type="xs:int" minOccurs="0" /> 
  29.  name="CustomerID" 
  30. codegen:typedName="CustomerID" 
  31.  codegen:nullValue="" type="xs:string" minOccurs="0" /> 
  32.  name="EmployeeID" 
  33. codegen:typedName="EmployeeID" codegen:nullValue="0"   
  34. type="xs:int" minOccurs="0" /> 
  35.  name="OrderAdapter" 
  36. codegen:typedName="OrderAdapter" 
  37. codegen:nullValue="1980-01-01T00:00:00"   
  38. type="xs:dateTime" minOccurs="0" /> 
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  name="Constraint1"> 
  45.  xpath=".//Customers" /> 
  46.  xpath="CustomerID" /> 
  47.  
  48.  name="CustOrders" refer="Constraint1" 
  49. codegen:typedParent="Customer" codegen:typedChildren="GetOrders"> 
  50.  xpath=".//Orders" /> 
  51.  xpath="CustomerID" /> 
  52.  
  53.  
  54.  

网页名称:揭秘ADO.NET批注在编程中的重大意义
网页网址:http://www.shufengxianlan.com/qtweb/news39/310439.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联