c#LINQ从XElement获取属性值

时间:2015-09-01 10:12:00

标签: c# xml linq xelement xattribute

我在数据定义文件中有以下XML:

<PQTemplate documentID="CSTrlsEN" documentType="TransList" templateID="001" 
        templateType="Customer Copy" 
        templateName="C:\CPS\_templates\Mini-Statements\CSTrlsEN.doc">  
<field pos="5" name="YPTME" descr="Time"  />
<field pos="6" name="YPDTE" descr="Action Date"  />
<field pos="7" name="YPBRNO" descr="Branch Number"  />
<field pos="8" name="YPBNA" descr="Branch Name"  />
<field pos="9" name="YPTID" descr="Teller ID"  />
<field pos="10" name="YPISN" descr="Teller Sequence"  />
<field pos="11" name="YPREF" descr="Customer Reference"  />
<field pos="12" name="YPCUS" descr="Customer Name"  />
<field pos="13" name="YPEAN" descr="Account Number"  />
<field pos="14" name="YPATY" descr="Account Type"  />
<field pos="15" name="YPCUR" descr="Currency"  />
<field pos="16" name="YPBAL" descr="Available Balance"  />

我使用LINQ获取特定的XElement,使用下面的LINQ Expression从包含多个PQTemplate元素的XML文件中提取它:

var mapInfo = from nm in XElement.Elements("PQTemplate")
                where (string)nm.Attribute("documentID") == sRequests[0].Split('\t')[0] 
                select nm;    

现在我需要获取属性 documentType 的值,所以我尝试了下面的LINQ表达式:

var repName = from d in mapInfo.Attributes("documentType")
                     select d.Value;

reportName = repName.ToString();

不幸的是,虽然我可以看到 TransList 的值是 reportName 元素的一部分,但我没有试图检索它。

以下是VS 2013中显示的图片:

enter image description here

那么如何在元素中获得documentType属性?

5 个答案:

答案 0 :(得分:2)

这是因为repName将为所有IEnumerable<string>返回mapInfo

IEnumerable<string> repName = from d in mapInfo.Attributes("documentType")
                     select d.Value;

因此,如果您怀疑自己可能获得更多值,或者使用foreach来获取第一个属性,请使用First循环: -

string reportName = mapInfo.First().Attribute("documentType").Value;

答案 1 :(得分:1)

Linq查询返回集合。 for each超过repName

repName.First().ToString()

如果这就是你需要的全部。

答案 2 :(得分:1)

您的解决方案取决于XML中存在多少元素DocumentType。如果它只是一个(我想的)你可以使用repName.First().ToString()

如果属性可能出现多次,则应使用循环:

var result = new List<string>();
foreach(var a in (from d in mapInfo.Attributes("documentType") select d.Value) 
    result.Add(a.ToString());

甚至更短:

result = mapInfo.Attributes("documentType").Select(x => x.Value.ToString());

将返回枚举。

答案 3 :(得分:1)

更改

var mapInfo = from nm in XElement.Elements("PQTemplate")
                where (string)nm.Attribute("documentID") == sRequests[0].Split('\t')[0] 
                select nm;   

var mapInfo = from nm in XElement.Elements("PQTemplate")
                where (string)nm.Attribute("documentID") == sRequests[0].Split('\t')[0] 
                select nm.Attribute("documentType").Value;   

然后mapInfo.First()会为您提供所需的价值。

答案 4 :(得分:1)

要从LINQ查询中获取单个值,您必须调用示例FirstFirstOrDefault。如果你调用FirstOrDefault,如果查询没有返回匹配项,它将不会抛出异常。

string repName =  doc.Elements("PQTemplate")
                     .Where(e => (string)a.Attribute("documentID") == sRequests[0].Split('\t')[0])
                     .Select(e => (string)e.Attribute("documentType"))
                     .FirstOrDefault();

此外,您不需要致电ToString() XAttribute.Value,因为它已经是string