web-dev-qa-db-ja.com

LINQで特定の属性名と値を持つXElementを見つける

XDocument xDocument = XDocument.Load("...");
IEnumerable<XElement> elements = xDocument
    .Element("lfm")
    .Element("events")
    .Elements("event");

try
{            
    foreach (XElement Elm in elements)
    {
        comm.Parameters.AddWithValue("extID", Elm.Element("id").Value  ?? "");
        comm.Parameters.AddWithValue("Title", Elm.Element("title").Value ?? "");
        comm.Parameters.AddWithValue("HeadlineArtist", 
        Elm.Element("artists").Element("headliner").Value ?? "");

しかし、属性「size = large」を持つ要素「image」の値が必要です。私は一晩中探していましたが、これは私が今までに見た中で最も近いものです。

comm.Parameters.AddWithValue("LargeImage",
    Elm.Descendants("image")
       .FirstOrDefault(i => (string)i.Attribute("size") == "large").Value);

XML応答の一部のサンプル:

<lfm status="ok">
    <events xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
            location="Chicago, United States" page="1" perPage="1"
            totalPages="341" total="341" festivalsonly="0" tag="">
        <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
            <id>3264699</id>
            <title>Iron And Wine</title>
            <artists>
                <artist>Iron And Wine</artist>
                <artist>Dr. John</artist>
                <headliner>Iron And Wine</headliner>
            </artists>
            <venue>
                <id>8915382</id>
                <name>Ravinia Festival</name>
                <location>
                    <city>Highland Park</city>
                    <country>United States</country>
                    <street>200 Ravinia Park Rd</street>
                    <postalcode>60035</postalcode>
                    <geo:point>
                        <geo:lat>42.15831</geo:lat>
                        <geo:long>-87.778409</geo:long>
                    </geo:point>
                </location>
                <url>http://www.last.fm/venue/8915382+Ravinia+Festival</url>
                <website>http://www.ravinia.org/</website>
                <phonenumber>847.266.5100</phonenumber>
                <image size="small">http://userserve-ak.last.fm/serve/34/63026487.jpg</image>
                <image size="medium">http://userserve-ak.last.fm/serve/64/63026487.jpg</image>
                <image size="large">http://userserve-ak.last.fm/serve/126/63026487.jpg</image>
                <image size="extralarge">http://userserve-ak.last.fm/serve/252/63026487.jpg</image>
16
Scott Selby

試す

XElement result = Elm.Descendants("image")
   .FirstOrDefault(el => el.Attribute("size") != null &&
                         el.Attribute("size").Value == "large");
if (result != null) {
    process result.Value ...
}

C#6.0(VS 2015)以降、次のように記述できます。

XElement result = Elm.Descendants("image")
   .FirstOrDefault(el => el.Attribute("size")?.Value == "large");
if (result != null) {
    process result.Value ...
}

(@RandRandomが指摘したように)自明ではない代替方法は、属性をstringにキャストすることです。

XElement result = Elm.Descendants("image")
   .FirstOrDefault(el => (string)el.Attribute("size") == "large");
if (result != null) {
    process result.Value ...
}

XAttribute Explicit Conversion(XAttribute to String) のため、これは機能します。

あなたは使用できます XPathSelectElement拡張メソッド

var node = Elm.XPathSelectElement("descendant::image[@size='large']");
if (node!=null)
{
    var path = node.Value;
}
15
Damith