vote up 4 vote down star
2

If I have the following xml:

        XDocument xDocument = new XDocument(
            new XElement("RootElement",
                new XElement("ChildElement",
                    new XAttribute("Attribute1", "Hello"),
                    new XAttribute("Attribute2", "World")
                ),
                new XElement("ChildElement",
                    new XAttribute("Attribute1", "Foo"),
                    new XAttribute("Attribute2", "Bar")
                )
            )
        );

I'm after the output "Hello, Foo" using LINQ "." notation.

I can get "Hello" using

xDocument.Element("RootElement").Element("ChildElement").Attribute("Attribute1").Value;

I can get all of the Attributes using

xDocument.Element("RootElement").Elements("ChildElement").Attributes("Attribute1");

How can I get a list of the string values of the attributes so that I can join then as a comma separated list?

flag

2 Answers

vote up 1 vote down
var strings = from attribute in 
                       xDocument.Descendants("ChildElement").Attributes()
              select attribute.Value;
link|flag
I needed to do it using the . notation rather than using linq query. Howeverr, +1 as you totally pointed me in the right direction. – Robin Day Sep 2 at 16:46
Ah sorry, I usually use the query syntax just out of habit. – womp Sep 2 at 17:17
vote up 2 vote down check

Ok, so thanks to womp I realised it was the Select method I needed in order to obtain the property Value so I could get an array of strings. Therefore, the following works.

String.Join(",", (string[]) xDocument.Element("RootElement").Elements("ChildElement").Attributes("Attribute1").Select(attribute => attribute.Value).ToArray());
link|flag

Your Answer

Get an OpenID
or

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