使用属性CORPORATE访问命名空间内的XML

时间:2012-02-10 16:43:28

标签: c# xml readxml

如何使用Value = Company Name访问XML元素 nameSur (这是我想要的,只是[公司名称])。我一直将对象引用设置为from children in lv1.Element("IndividualName").Descendants()行中的对象实例。。任何建议将不胜感激。

static public string GetAttributeAgencyAction2(string parFileName)
{
    string retVal = string.Empty;
    XNamespace aw = "profile.information.4.0";
    XDocument xmlDoc = null;

    using (StreamReader oReader = new StreamReader(parFileName, Encoding.GetEncoding("ISO-8859-1")))
    {
        xmlDoc = XDocument.Load(oReader);
    }

    var theme = "CORPORATE"; 

    var lv1s = from lv1 in xmlDoc.Descendants(aw + "Profile")
               where lv1.Attribute("profileType").Value.Equals(theme)
               //where lv1.Element("IndividualName").Value == "IndividualName"
               from children in lv1.Element("IndividualName").Descendants()
               select new
               {
                   Header = lv1.Attribute("profileType").Value,
                   elemento = children.Element("IndividualName").Value,
               };

    //Loop through results 
    foreach (var lv1 in lv1s)
    {
        Console.WriteLine(lv1.Header + " "+lv1.elemento);
        retVal = lv1.Header;
    }
    return retVal;
}

这是我的XML

     <Profile xmlns="profile.information.4.0" profileType="CORPORATE" gender="UNKNOWN">
    <creatorCode>DELPHI</creatorCode>
    <createdDate>2012-01-24T19:35:10.000</createdDate>
    <lastUpdaterCode>DELPHI</lastUpdaterCode>
    <lastUpdated>2012-01-30T12:17:01.000</lastUpdated>
    <genericName>Bonafont</genericName>
    <IndividualName>
      <nameSur>Company Name</nameSur>
    </IndividualName>
    <mfResort>5924</mfResort>
    <mfResortProfileID>1249468</mfResortProfileID>
    <mfContactLast>Ernert</mfContactLast>
    <mfContactFirst>Ramillo</mfContactFirst>
    <mfAllowMail>NO</mfAllowMail>
    <mfAllowEMail>NO</mfAllowEMail>
    <mfGuestPriv>NO</mfGuestPriv>
    </Profile>

1 个答案:

答案 0 :(得分:2)

只需使用您已定义的命名空间:

var lv1s = from lv1 in xmlDoc.Descendants(aw + "Profile")
            where lv1.Attribute("profileType").Value.Equals(theme)
            //where lv1.Element("IndividualName").Value == "IndividualName"
            from child in lv1.Element(aw + "IndividualName").Descendants()
            select new
            {
                Header = lv1.Attribute("profileType").Value,
                elemento = child.Value,
            };

修改:

假设每个IndividualName只有一个Profile元素,我会重新构建您的查询,以检查空值:

var lv1s = from lv1 in xmlDoc.Descendants(aw + "Profile")
           where lv1.Attribute("profileType").Value.Equals(theme) && lv1.Element(aw + "IndividualName") != null
            select new 
            {
                Header = lv1.Attribute("profileType").Value,
                elemento = (string)lv1.Element(aw + "IndividualName").Element(aw+"nameSur")
            };