これは一日中私を怒らせています。xdocument があり、単に値を変更したいだけです。
xmlは次のようになります
<session>
<immediate>
<pivot name="test">
<axes>
<axis position="SLICERS">
<attribute name="Book">
<selection value="Book_Name" type="Book" />
</attribute>
<attribute name="Result Namespace">
<selection value="blah blah" />
</attribute>
<attribute name="Date">
<selection value="2012-05-16" />
</attribute>
<attribute name="Measure">
<selection value="123" />
</attribute>
</axis>
<axis position="SIDE">
<attribute name="ttx" mode="ALL"></attribute>
</axis>
<axis position="TOP">
<attribute name="hhy" mode="ALL"></attribute>
</axis>
</axes>
<source name="risk" />
<aggregate expression="SUM(Money Value)" />
<grid-processor name="errors" />
</pivot>
</immediate>
</session>
私がやりたいことは、単に変更することです
<attribute name="Book">
<selection value="Book_Name" type="Book" />
</attribute>
に
<attribute name="Book">
<selection value="CorrectBookName" type="Book" />
</attribute>
LINQ を使用したいのですが、XElement を試しました。ブロックは取得できますが、更新できません。
XElement amend = xdoc.Descendants("attribute").First(el => (String)el.Attribute("selection") == "value");
誰にもアイデアはありますか?