【问题标题】:Updating XML attribute in subtree using LINQ to XML使用 LINQ to XML 更新子树中的 XML 属性
【发布时间】:2012-11-12 18:49:36
【问题描述】:

我正在尝试一天的时间来完成这项工作。我想使用 LINQ to XML 更新我的 XML 中的货币属性

我的 XML 如下所示:

 <Bank>
   <Customer id="0">
     <FName>Adam</FName>
     <LName>Kruz</LName>
     <Accounts>
       <Account id="0" money="1500" />
       <Account id="1" money="6500" />
       <Account id="2" money="0" />
     </Accounts>
   </Customer>
   <Customer id="1">
     <FName>Benny</FName>
     <LName>Thoman</LName>
     <Accounts>
       <Account id="0" money="3200" />
     </Accounts>
   </Customer>
 </Bank>

我一直在尝试使用此代码,但没有成功

 XDocument document = XDocument.Load("database.xml");

        XElement root = document.Root;

        root.Elements("Customer")
            .Where(e => e.Attribute("id").Value.Equals(customerID.ToString())).Select(e => e.Descendants("Account")
                .Where(f => f.Attribute("id").Value.Equals(this.id.ToString())).Select(f => f.Attribute("id")).First().SetValue(money.ToString()));


        document.Save("database.xml");

我收到一个错误: 无法从用法中推断方法“System.Linq.Enumerable.Select(System.Collections.Generic.IEnumerable, System.Func)”的类型参数。尝试明确指定类型参数。

请告诉我如何编辑元素(帐户)的子树(帐户)中的属性,非常感谢:(

【问题讨论】:

    标签: c# xml linq


    【解决方案1】:

    试试这个:

    var query =
        from c in document.Root.Elements("Customer")
        where c.Attribute("id").Value == customerID.ToString()
        from a in c.Element("Accounts").Elements("Account")
        where a.Attribute("id").Value == this.id.ToString()
        select a;
    
    query
        .First()
        .Attribute("money")
        .SetValue(money.ToString());
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-02-22
      相关资源
      最近更新 更多