Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using LINQ to XML, how can I project the following XML data into a List<string> with the values "Test1", "Test2" and "Test3".

<objectlist>
    <object code="Test1" />
    <object code="Test2" />
    <object code="Test3" />
</objectlist>

I have the XML available in a string:

XDocument xlist = XDocument.Parse(xmlData);

Thanks

share|improve this question
2  
What have you tried? (It's very simple, but it's important to learn to try things yourself first, and report them when you ask a question.) – Jon Skeet Oct 11 '12 at 13:57
2  
What have you tried? This is trivial and there are A LOT questions about this here in SO. – Daniel Hilgarth Oct 11 '12 at 13:58

2 Answers

up vote 1 down vote accepted
var xDoc = XDocument.Parse(xml);
List<string> codes = xDoc.Descendants("object")
                        .Select(o => o.Attribute("code").Value)
                        .ToList();
share|improve this answer
var query = from node in xlist.Root.Elements("object")
            select node.Attribute("code").Value

var result = query.ToList();

Or, with extension method syntax:

var query = xlist.Root.Elements("object")
               .Select(node => node.Attribute("code").Value)
               .ToList()
share|improve this answer
2  
Why use a query expression here? It just adds noise compared with the extension method calls. – Jon Skeet Oct 11 '12 at 13:59
@JonSkeet A matter of preference probably, but I find it reduces noise... – jeroenh Oct 11 '12 at 14:00
1  
It does in complicated queries - but here it's increasing noise, particularly because you then want to call ToList() afterwards. I usually find that if you're just doing a Select or a Where, query expressions are noisier than extension method syntax. – Jon Skeet Oct 11 '12 at 14:02
1  
Davenewza, how can you much prefer something when you didn't know how to chain it to begin with..I am confused..? – DJ KRAZE Oct 11 '12 at 14:05
1  
Understandable.. my apologies – DJ KRAZE Oct 11 '12 at 14:12
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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