vote up 1 vote down star

I have an XML document looking similar to this:

<items>
 <item cat="1" owner="14">bla</item>
 <item cat="1" owner="9">bla</item>
 <item cat="1" owner="14">bla</item>
 <item cat="2" owner="12">bla</item>
 <item cat="2" owner="12">bla</item>
</items>

Now I'd like to get all unique owners (I actually only need the attribute value of the owner) belonging to a specified category using a linq query. In my example, the query for cat 1 would return a list containing 9 and 14. How can I do that? Linq syntax would be preferred over Lambdas. Thanks in advance ;)

flag

4 Answers

vote up 3 vote down check

Presuming the fragment is in itemsElement:

var distinctOwners = (from item in itemsElement.Element("item") 
 where itemElements.Attribute("cat") == 1 
select item.Attribute("owner")).Distinct();

Apologies for formatting and indentation!

link|flag
Or in 'lambda' form: itemElements .Where(x=>x.Attribute("cat")==1) .Select(x=>x.Attribute("owner")) .Distinct(); Personally I prefer that! – Jennifer Dec 5 '08 at 20:58
'itemElements' should be 'item' in where clause. Attribute method returns an XAttribute which cannot be compared with 1 using == needs a cast to int and Distinct for cat="2" will still return 2 items since both attributes are each a distinct object. – AnthonyWJones Dec 5 '08 at 21:05
... so apart from the glaring syntax errors and my complete lack of xlinq knowledge, I am competely on the money. Wonder if there is any way of down-voting your own posts... – Jennifer Dec 7 '08 at 21:01
vote up 1 vote down

Try this function:-

static IEnumerable<int> GetOwners(XDocument doc, string cat)
{
	return from item in doc.Descendants("item")
		where item.Attribute("cat").Value == cat
		select (int)item.Attribute("owner")).Distinct();

}
link|flag
vote up 0 vote down

How can you do LINQ without lambdas? Lambdas are a key element of LINQ. What's wrong with lambdas?

link|flag
I presume he means from x in y select x.z rather than y.select(x=>x.z) ; Personally I prefer the latter! – Jennifer Dec 5 '08 at 20:51
vote up 0 vote down
  XElement ele = XElement.Parse(@"<items><item cat=""1"" owner=""14"">bla</item><item cat=""1"" owner=""9"">bla</item>" +
                                @"<item cat=""1"" owner=""14"">bla</item><item cat=""2"" owner=""12"">bla</item>" +
                                @"<item cat=""2"" owner=""12"">bla</item></items>");

  int cat = 1;


  List<int> owners = ele.Elements("item")
    .Where(x=>x.Attribute("cat").Value==cat.ToString()).Select(x=>Convert.ToInt32(x.Attribute("owner").Value)).Distinct().ToList();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.