我在使用 LINQ to XML 读取我的 xml 文件时遇到问题。我附上了部分 xml 架构。
<?xml version="1.0" encoding="UTF-8"?>
-<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mstns="http://tempuri.org/sdnList.xsd" xmlns="http://tempuri.org/sdnList.xsd" elementFormDefault="qualified" targetNamespace="http://tempuri.org/sdnList.xsd" id="sdnList">
-<xs:element name="sdnList">
-<xs:complexType>
-<xs:sequence>
-<xs:element name="publshInformation" maxOccurs="1">
-<xs:complexType>
-<xs:sequence>
<xs:element name="Publish_Date" maxOccurs="1" minOccurs="0" type="xs:string"/>
<xs:element name="Record_Count" maxOccurs="1" minOccurs="0" type="xs:int"/>
</xs:sequence>
</xs:complexType>
</xs:element>
-<xs:element name="sdnEntry" maxOccurs="unbounded">
-<xs:complexType>
-<xs:sequence>
<xs:element name="uid" type="xs:int"/>
<xs:element name="firstName" minOccurs="0" type="xs:string"/>
<xs:element name="lastName" type="xs:string"/>
<xs:element name="title" minOccurs="0" type="xs:string"/>
<xs:element name="sdnType" type="xs:string"/>
<xs:element name="remarks" minOccurs="0" type="xs:string"/>
....CONTINUES FROM HERE
我正在使用的代码如下。
XDocument doc = XDocument.Load("c:/OFACTemp/sdn.xml");
var sdnEntry = from item in doc.Root.Descendants("sdnEntry")
select new
{
uid = item.Element("uid").Value,
firstName = item.Element("firstName").Value
};
string test = "";
foreach (var p in sdnEntry)
test = "Id: " + p.uid + " First Name: " + p.firstName;
当我通过代码断点时,文档加载正常,我看到了正确的数据。Doc.Root 已填充,但 Descendants 似乎一无所有。然后,一旦到我的 foreach 语句, sdnEntry 就不会产生任何结果。这看起来很简单,但我不知道为什么我不能选择任何东西。我也尝试过使用 Elements 代替 Descendants 并得到相同的结果。最终结果我需要获取 xml 并创建 C# 对象。
此外,一个附带的问题是,如果某些 sdnEntry 有例如名字而其他人没有,将如何处理 sdnEntry?如果 sdnEntry 不存在名字,则 xml 文件中甚至不存在 firstName 元素标记。任何帮助将不胜感激。
这是xml的示例。
<?xml version="1.0" standalone="true"?>
-<sdnList xmlns="http://tempuri.org/sdnList.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-<publshInformation>
<Publish_Date>05/16/2013</Publish_Date>
<Record_Count>5493</Record_Count>
</publshInformation>
-<sdnEntry>
<uid>10</uid>
<lastName>ABASTECEDORA NAVAL Y INDUSTRIAL, S.A.</lastName>
<sdnType>Entity</sdnType>
-<programList>
<program>CUBA</program>
</programList>
-<akaList>
-<aka>
<uid>4</uid>
<type>a.k.a.</type>
<category>strong</category>
<lastName>ANAINSA</lastName>
</aka>
</akaList>
-<addressList>
-<address>
<uid>7</uid>
<country>Panama</country>
</address>
</addressList>
</sdnEntry>