XmlDataDocument.DataSet Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a DataSet that provides a relational representation of the data in the XmlDataDocument
.
public:
property System::Data::DataSet ^ DataSet { System::Data::DataSet ^ get(); };
public System.Data.DataSet DataSet { get; }
member this.DataSet : System.Data.DataSet
Public ReadOnly Property DataSet As DataSet
Property Value
A DataSet
that can be used to access the data in the XmlDataDocument
using a relational model.
Remarks
The DataSet
enables you to access the data in the XmlDataDocument
using a relational model. This means that you can handle the data as tables and views, rows and columns, relations, and so on. Changes made in the DataSet
are immediately visible in the XmlDataDocument
.