Find or Create Element in LINQ-to-XML - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T17:06:45Zhttp://stackoverflow.com/feeds/question/637065http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/637065/find-or-create-element-in-linq-to-xml1Find or Create Element in LINQ-to-XMLCraig Walker2009-03-12T01:26:47Z2009-03-12T02:33:08Z
<p>I want to set the value/children of an element that may or may not already exist. If the element doesn't exist, I want to have it automagically created for me. </p>
<p>This way, my code only has to worry about the contents of the element... not whether or not it already exists. (By the time I'm done with it, it's guaranteed to exist).</p>
<p>Does this functionality already exist in LINQ-to-XML? I haven't found it yet, and am considering writing my own method.</p>
http://stackoverflow.com/questions/637065/find-or-create-element-in-linq-to-xml/637188#6371883Answer by Craig Walker for Find or Create Element in LINQ-to-XMLCraig Walker2009-03-12T02:33:08Z2009-03-12T02:33:08Z<p>Here's what I have so far:</p>
<pre><code>public static IEnumerable<XElement> ElementsOrCreate(this XElement parent, XName name)
{
IEnumerable<XElement> elements = parent.Elements(name);
if (!elements.Any())
{
XElement element = new XElement(name);
parent.Add(element);
elements = new XElement[] { element };
}
return elements;
}
</code></pre>
<p>Note that the first argument (for the extension) is an XElement, not an XContainer like System.Xml.Linq.Extensions.Elements. The only other non-XElement XContainer is XDocument, and this method doesn't work (and doesn't make much sense) for an XDocument.</p>