问题描述
我正在尝试查询 XML 树并将结果元素值存储在类似于 this example 的对象列表中。
问题是无论我尝试什么,我都无法填充列表。我没有任何错误,我只有一个空列表。我几乎可以肯定我的查询设置错误,但我是 LINQ 的新手,我无法弄清楚我哪里出错了。这是我正在使用的课程:
public class Individual
{
public string field1 { get; set; }
public string field2 { get; set; }
public bool field3 { get; set; }
}
这是我的变量和查询:
XDocument xmlDoc = XDocument.Load(new System.IO.StringReader(MainDataSource.CreateNavigator().OuterXml));
xmlDoc.Descendants()
.Attributes()
.Where(x => x.IsNamespaceDeclaration)
.Remove();
List<Individual> individualList =
(
from el in xmlDoc.Root.Elements("myFields").Descendants("Individual")
select new Individual
{
field1 = (string)el.Element("field1"),field2 = (string)el.Element("field2"),field3 = (bool)el.Element("field3")
}
).ToList();
这是 XML 文档:
<?mso-infoPathSolution solutionVersion="1.0.0.31" productVersion="15.0.0" PIVersion="1.0.0.0" href="file:///C:\Users\User\AppData\Local\Microsoft\InfoPath\Designer4\991d50f99c274f7c\manifest.xsf" ?>
<?mso-application progid="InfoPath.Document" versionProgid="InfoPath.Document.4"?>
<myFields xml:lang="en-us" xmlns="http://schemas.microsoft.com/office/infopath/2003/myXSD/2021-02-26T15:29:19">
<DirectReportsList>
<Individual>
<field1>foo</field1>
<field2>bar</field2>
<field3>true</field3>
</Individual>
</DirectReportsList>
<Current_UserID></Current_UserID>
<Current_UserName></Current_UserName>
</myFields>
解决方法
您的代码正在寻找根目录下的 myFields
元素,但这是根目录,因此未找到任何内容。
这是你可以做的:
XNamespace ns ="http://schemas.microsoft.com/office/infopath/2003/myXSD/2021-02-26T15:29:19";
List<Individual> individualList =
(
from el in xmlDoc.Root.Descendants(ns + "Individual")
select new Individual
{
field1 = (string)el.Element(ns + "field1"),field2 = (string)el.Element(ns +"field2"),field3 = (bool)el.Element(ns +"field3")
}
).ToList();
}
如果你真的不想处理命名空间,你可以使用元素的 LocalName ,但它对意外的 xml 内容很脆弱。
更新
我刚刚查看了您链接到的示例。不行,作者贴了不好的代码。