我知道之前有很多相关的问题 例如here
但我无法解决一个简单的问题。
这是一个例子
int id = 1;
var doc = new XDocument(new XDeclaration("1.0","utf-8","yes"));
doc.Add(new XElement("root", new XAttribute("Version", "1.1.0")));
doc.Root.Add(new XElement("subroot", new XAttribute("ID", id)));
Console.WriteLine(doc);
这结果
直到这里都好。 现在我想在子根中添加新的子元素。
这就是我试过的
doc.Element("subroot").Add(new XElement("InsideSubroot"), new XAttribute("name","xyz"));
然而,这会引发异常,说对象引用未设置为对象的实例。
另一次尝试是
doc.Elements("subroot").Single(x=> (int) x.Attribute("ID") == id).Add(new XElement("InsideSubroot"), new XAttribute("name","xyz"));
这说找不到匹配的元素。
有人可以解释发生了什么以及为什么我会收到这些错误。 以及如何添加子元素。在我的情况下,内部子根元素
答案 0 :(得分:3)
subroot
不是该文档的直接子项。您应该使用Descendents
代替:
doc
.Descendants("subroot")
.Single(x => (int)x.Attribute("ID") == id)
.Add(new XElement("InsideSubroot"), new XAttribute("name","xyz"));