我有以下XML:
<Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:hl7-org:v3 CDA_SDTC.xsd" xmlns="urn:hl7-org:v3" xmlns:cda="urn:hl7-org:v3" xmlns:sdtc="urn:hl7-org:sdtc">
<component>
<structuredBody>
<component>
<section>
<templateId root="abs" />
<title>A1</title>
<text>
<paragraph>Hello world!</paragraph>
</text>
</section>
</component>
</structuredBody>
</component>
</Document>
我有以下代码用于检索paragraph
:
XDocument m_xmld = XDocument.Load(Server.MapPath("~/xml/a.xml"));
var m_nodelist = m_xmld.Descendants().Where(p => p.Name.LocalName == "section").
Select(i => i.Element("text").Element("paragraph").Value).ToList();
错误:
Object reference not set to an instance of an object.
但是下面的代码工作正常,但我想使用上面的代码。
XNamespace ns = "urn:hl7-org:v3";
var m_nodelist = m_xmld.Descendants(ns + "section").
Select(i => i.Element(ns + "text").Element(ns + "paragraph").Value).ToList();
答案 0 :(得分:1)
xmlns="urn:hl7-org:v3"
是您的默认命名空间,因此需要引用...
XNamespace ns="urn:hl7-org:v3";
m_xmld.Descendants(ns+"rows")....
或强>
你可以避免命名空间本身
m_xmld.Elements().Where(e => e.Name.LocalName == "rows")
答案 1 :(得分:1)
试试这个
var m_nodelist = m_xmld.Root.Descendants("rows")
如果要在选择节点时指定命名空间,可以尝试
var m_nodelist = m_xmld.Root.Descendants(XName.Get("rows", "urn:hl7-org:v3"))
答案 2 :(得分:1)
var m_nodelist = m_xmld.Descendants().Where(p => p.Name.LocalName == "rows").
Select(u => u.Attribute("fname").Value).ToList();
更新:
var m_nodelist = m_xmld.Descendants().Where(p => p.Name.LocalName == "section").
Select(u => (string)u.Descendants().FirstOrDefault(p => p.Name.LocalName == "paragraph")).ToList();
答案 3 :(得分:0)
正确识别后,您需要将namespace
附加到节点查找。
XNamespace nsSys = "urn:hl7-org:v3";
var m_nodelist = m_xmld.Descendants(nsSys + "rows").Select(x => x.Attribute("fname").Value).ToList();