Find or Create Element in LINQ-to-XML - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:06:45Z http://stackoverflow.com/feeds/question/637065 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/637065/find-or-create-element-in-linq-to-xml 1 Find or Create Element in LINQ-to-XML Craig Walker 2009-03-12T01:26:47Z 2009-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#637188 3 Answer by Craig Walker for Find or Create Element in LINQ-to-XML Craig Walker 2009-03-12T02:33:08Z 2009-03-12T02:33:08Z <p>Here's what I have so far:</p> <pre><code>public static IEnumerable&lt;XElement&gt; ElementsOrCreate(this XElement parent, XName name) { IEnumerable&lt;XElement&gt; 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>