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.
将 XML 文档转换为 .NET 2.0 数据集的最佳方法是什么。XML 文档包含具有父子关系的复杂结构,应转换为 DataSet 中的多个表。DataSet 表还应维护表之间的关系。现在,我必须编写自定义 XSLT 来进行这种转换
最好的(意思是最简单的)方法,也包括所有的父/子关系是......
DataSet myDataSet = new DataSet(); myDataSet.ReadXml("myXmlFile.xml");
多田!
顺便说一句,如果您在内存中有 XML(而不是在文件中),那么您可以使用“ReadXml”重载之一从流中读取它。