LINQ to XML Newbie Question: Returning More Than One Result - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T07:39:46Zhttp://stackoverflow.com/feeds/question/127258http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127258/linq-to-xml-newbie-question-returning-more-than-one-result3LINQ to XML Newbie Question: Returning More Than One ResultBullines2008-09-24T13:51:29Z2008-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><Root>
<GroupA>
<Item attrib1="aaa" attrib2="000" attrib3="true" />
</GroupA>
<GroupB>
<Item attrib1="bbb" attrib2="111" attrib3="true" />
<Item attrib1="ccc" attrib2="222" attrib3="false" />
<Item attrib1="ddd" attrib2="333" attrib3="true" />
</GroupB>
<GroupC>
<Item attrib1="eee" attrib2="444" attrib3="true" />
<Item attrib1="fff" attrib2="555" attrib3="true" />
</GroupC>
</Root>
</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#1273012Answer by Chris Wenham for LINQ to XML Newbie Question: Returning More Than One ResultChris Wenham2008-09-24T13:58:44Z2008-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#1273174Answer by aku for LINQ to XML Newbie Question: Returning More Than One Resultaku2008-09-24T14:01:33Z2008-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#1273570Answer by Jim Burger for LINQ to XML Newbie Question: Returning More Than One ResultJim Burger2008-09-24T14:08:43Z2008-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#1274451Answer by David B for LINQ to XML Newbie Question: Returning More Than One ResultDavid B2008-09-24T14:17:59Z2008-09-24T14:17:59Z<p>Here's the query method form of the answer:</p>
<pre><code>var items =
e.Elements("GroupB")
.SelectMany(g => g.Elements("Item"))
.Select(i => 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#3865770Answer by andy for LINQ to XML Newbie Question: Returning More Than One Resultandy2008-12-22T15:53:12Z2008-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>