Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个名为 DataSetsForReporting 的文件夹下有一个数据集,这个 xsd 被称为:
DataSet_Clients.xsd
我的问题是如何将上面提到的数据集设置为我页面中数据集的实例?例如:
数据集 myDataSet = new DataSet();
myDataSet = (the data set under that folder).
这是可能的,如果是我该怎么做?
谢谢
// Load the schema file. myDataSet.ReadXmlSchema("DataSet_Clients.xsd");
如果 app_Data 文件夹下的 xsd
myDataSet.ReadXml(Server.MapPath("~/App_Data/DataSet_Clients.xsd"));