我在C#中使用HttpWebRequest獲取以下XML字符串。將以下XML導出到Datatable
我的回答是XML
<response>
<accounts>
<account>
<city>Some City</city>
<accountId>1234567</accountId>
<companyName>My Company</companyName>
<country>My Country</country>
<email>[email protected]</email>
<enabled>1</enabled>
</account>
<account>
<city>Some Other City</city>
<accountId>0987654</accountId>
<companyName>My Other Company</companyName>
<country>My Country</country>
<email>[email protected]</email>
<enabled>1</enabled>
</account>
</accounts>
<total>2</total>
<limit>20</limit>
<offset>0</offset>
</response>
我需要將XML導出到一個數據表與下面的架構。
accountId | companyName | city | country | email | enabled
1234567 | My Company | Some City | My Country | [email protected] | 1
0987654 | My Other Company | Some Other City | My Country | [email protected] | 1
這是我第一次使用XML,我很困惑如何去做。請幫幫我。
嘛,你嘗試過什麼?例如,您是否閱讀過LINQ to XML?當然,這是我首選的.NET中的XML API。有關更多信息,請參閱http://msdn.microsoft.com/en-us/library/bb387098.aspx。 –