c#,更新 XML 中的子节点

c#, update child node in XML

我有一个 xml 文件,如下所示

<ExecutionGraph>
  <If uniqKey="1">
    <Do>
      <If uniqKey="6">
        <Do />
        <Else />
      </If>
    </Do>
    <Else>
      <If uniqKey="2">
        <Do />
        <Else>
          <If uniqKey="3">
            <Do />
            <Else />
          </If>
        </Else>
      </If>
    </Else>
  </If>
</ExecutionGraph>

现在我想找到 uniqKey=3 并插入

<Task id="3" xmlns="urn:workflow-schema">
  <Parent id="-1" />
</Task>

进入其 <Do> 标签。

我试过的是下面的c#代码。

var element = xGraph
    .Descendants()
    .Where(x => (string)x.Attribute("uniqKey") == parent.Key.ToString()).first();

现在 elemenet 有完整的标签,但我无法将我的任务插入到它的 <DO> 子标签中。

期望输出:

<ExecutionGraph>
<If uniqKey="1">
    <Do>
        <If uniqKey="6">
            <Do />
            <Else />
        </If>
    </Do>
    <Else>
        <If uniqKey="2">
            <Do />
            <Else>
                <If uniqKey="3">
                    <Do>
                        <Task id="3"
                            xmlns="urn:workflow-schema">
                            <Parent id="-1" />
                        </Task>
                    </Do>
                    <Else />
                </If>
            </Else>
        </If>
    </Else>
</If>

提前致谢。

string str = "<ExecutionGraph><If uniqKey='1'><Do><If uniqKey='6'><Do /><Else /></If></Do><Else><If uniqKey='2'><Do /><Else><If uniqKey='3'><Do /><Else /></If></Else></If></Else></If></ExecutionGraph>";
            XDocument doc = XDocument.Parse(str);
            var element = doc
                            .Descendants()
                            .Where(x => (string)x.Attribute("uniqKey") == "3").FirstOrDefault().Element("Do");
            XElement task = XElement.Parse("<Task id='3' xmlns='urn:workflow-schema'><Parent id='-1' /></Task>");
            element.Add(task);

输出:

<If uniqKey="3">
            <Do>
              <Task id="3" xmlns="urn:workflow-schema">
                <Parent id="-1" />
              </Task>
            </Do>
            <Else />
          </If>