LINQ to XML Newbie Question: Returning More Than One Result - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:39:46Z http://stackoverflow.com/feeds/question/127258 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/127258/linq-to-xml-newbie-question-returning-more-than-one-result 3 LINQ to XML Newbie Question: Returning More Than One Result Bullines 2008-09-24T13:51:29Z 2008-12-22T15:53:12Z <p>Greetings!</p> <p>I'm working on wrapping my head around LINQ. If I had some XML such as this loaded into an XDocument object:</p> <pre><code>&lt;Root&gt; &lt;GroupA&gt; &lt;Item attrib1="aaa" attrib2="000" attrib3="true" /&gt; &lt;/GroupA&gt; &lt;GroupB&gt; &lt;Item attrib1="bbb" attrib2="111" attrib3="true" /&gt; &lt;Item attrib1="ccc" attrib2="222" attrib3="false" /&gt; &lt;Item attrib1="ddd" attrib2="333" attrib3="true" /&gt; &lt;/GroupB&gt; &lt;GroupC&gt; &lt;Item attrib1="eee" attrib2="444" attrib3="true" /&gt; &lt;Item attrib1="fff" attrib2="555" attrib3="true" /&gt; &lt;/GroupC&gt; &lt;/Root&gt; </code></pre> <p>I'd like to get the attribute values of all of the Item child elements of a Group element. Here's what my query looks like:</p> <pre><code>var results = from thegroup in l_theDoc.Elements("Root").Elements(groupName) select new { attrib1_val = thegroup.Element("Item").Attribute("attrib1").Value, attrib2_val = thegroup.Element("Item").Attribute("attrib2").Value, }; </code></pre> <p>The query works, but if for example the groupName variable contains "GroupB", only one result (the first Item element) is returned instead of three. Am I missing something?</p> http://stackoverflow.com/questions/127258/linq-to-xml-newbie-question-returning-more-than-one-result/127301#127301 2 Answer by Chris Wenham for LINQ to XML Newbie Question: Returning More Than One Result Chris Wenham 2008-09-24T13:58:44Z 2008-09-24T13:58:44Z <p>Yes, .Element() only returns the first matching element. You want .Elements() and you need to re-write your query somewhat:</p> <pre><code>var results = from group in l_theDoc.Root.Elements(groupName) select new { items = from i in group.Elements("Item") select new { attrib1_val = i.Attribute("attrib1").Value, attrib2_val = i.Attribute("attrib2").Value } }; </code></pre> http://stackoverflow.com/questions/127258/linq-to-xml-newbie-question-returning-more-than-one-result/127317#127317 4 Answer by aku for LINQ to XML Newbie Question: Returning More Than One Result aku 2008-09-24T14:01:33Z 2008-09-24T22:10:42Z <pre><code>XElement e = XElement.Parse(testStr); string groupName = "GroupB"; var items = from g in e.Elements(groupName) from i in g.Elements("Item") select new { attr1 = (string)i.Attribute("attrib1"), attr2 = (string)i.Attribute("attrib2") }; foreach (var item in items) { Console.WriteLine(item.attr1 + ":" + item.attr2); } </code></pre> http://stackoverflow.com/questions/127258/linq-to-xml-newbie-question-returning-more-than-one-result/127357#127357 0 Answer by Jim Burger for LINQ to XML Newbie Question: Returning More Than One Result Jim Burger 2008-09-24T14:08:43Z 2008-09-24T14:08:43Z <p>Another possibility is using a where clause:</p> <pre><code>var groupName = "GroupB"; var results = from theitem in doc.Descendants("Item") where theitem.Parent.Name == groupName select new { attrib1_val = theitem.Attribute("attrib1").Value, attrib2_val = theitem.Attribute("attrib2").Value, }; </code></pre> http://stackoverflow.com/questions/127258/linq-to-xml-newbie-question-returning-more-than-one-result/127445#127445 1 Answer by David B for LINQ to XML Newbie Question: Returning More Than One Result David B 2008-09-24T14:17:59Z 2008-09-24T14:17:59Z <p>Here's the query method form of the answer:</p> <pre><code>var items = e.Elements("GroupB") .SelectMany(g =&gt; g.Elements("Item")) .Select(i =&gt; new { attr1 = i.Attribute("attrib1").Value, attr2 = i.Attribute("attrib2").Value, attr3 = i.Attribute("attrib3").Value } ) .ToList() </code></pre> http://stackoverflow.com/questions/127258/linq-to-xml-newbie-question-returning-more-than-one-result/386577#386577 0 Answer by andy for LINQ to XML Newbie Question: Returning More Than One Result andy 2008-12-22T15:53:12Z 2008-12-22T15:53:12Z <p>how would you ammend that so you could return all the results from all groups where say the attrib3 value is true </p>