tailieunhanh - Using an XmlDataDocument Object to Store an XML Document

Đó là nơi mà các lớp XmlDataDocument có in Bạn sử dụng một đối tượng của lớp XmlDataDocument để hàng truy cập như là cả hai đối tượng XmlNode và các đối tượng DataRow quan hệ. Bạn kết hợp một DataSet với XmlDataDocument của bạn bằng cách đi qua DataSet của bạn vào constructor XmlDataDocument. Một đối tượng XmlDataDocument cung cấp đồng bộ hóa giữa DataSet và tài liệu XML. Ví dụ, nếu bạn thêm một khách hàng mới là một đối tượng XmlNode để XmlDataDocument của bạn. | Using an XmlDataDocument Object to Store an XML Document In the previous section you saw how you use an XmlDocument object to store an XML document containing customer details retrieved from a DataSet. That s fine but wouldn t it be great if you could combine the power of an XmlDocument with a DataSet Well you can That s where the XmlDataDocument class comes in. You use an object of the XmlDataDocument class to access rows as both XmlNode objects and relational DataRow objects. You associate a DataSet with your XmlDataDocument by passing your DataSet to the XmlDataDocument constructor. An XmlDataDocument object provides synchronization between the DataSet and the XML document. For example if you add a new customer as an XmlNode object to your XmlDataDocument then that customer is also added as a DataRow to your associated DataSet. Similarly if you add a new customer as a DataRow to your DataSet then that customer is also added as an XmlNode object in the XML document of the XmlDataDocument. Also if you update or delete a customer then that change is made in both the DataSet and the XmlDataDocument. You ll see examples of synchronization shortly. The XmlDataDocument class is derived from the XmlDocument class therefore the XmlDataDocument class inherits all the public properties methods and events shown in the previous section for the XmlDocument class. The DataSet property type DataSet is the property added to the XmlDataDocument class. It gets the DataSet object which stored the relational representation of the data. You associate a DataSet with your XmlDataDocument by passing the DataSet to the XmlDataDocument constructor. Table shows the additional XmlDataDocument methods. Table XmlDataDocument Methods Method Return Type Description GetElementFromRow XmlElement Returns the XmlElement object associated with the specified DataRow object. GetRowFromElement DataRow Returns the DataRow object associated with the specified XmlElement object. Load void .