Xdocument, выбирая правильные узлы - PullRequest
1 голос
/ 10 ноября 2010

Я пытаюсь создать запрос linq, который извлекает все узлы, которые имеют определенный элемент.

В приведенном ниже случае вы заметите, что вторая запись имеет несколько дополнительных элементов: DisplayOnSignup, SortOrder и т. Д.

Я бы хотел, чтобы linq предоставил мне все входные узлы, которые имеют элемент SortOrder.

Документ XML выглядит следующим образом:

<?xml version="1.0" encoding="UTF-8"?>
<feed >
    <entry>
        <link href="/ws/customers/testacct/lists/removed" rel="edit"></link>
        <id>http://api.constantcontact.com/ws/customers/testacct/lists/removed</id>
        <title type="text">Removed</title>
        <updated>2010-11-10T19:03:09.253Z</updated>
        <author>
            <name>Test</name>
        </author>
        <content type="application/vnd.ctct+xml">
            <ContactList id="http://api.constantcontact.com/ws/customers/testacct/lists/removed">
                <Name>Removed</Name>
                <ShortName>Removed</ShortName>
            </ContactList>
        </content>
    </entry>
    <entry>
        <link href="/ws/customers/testacct/lists/1" rel="edit"></link>
        <id>http://api.constantcontact.com/ws/customers/testacct/lists/1</id>
        <title type="text">General Interest</title>
        <updated>2010-11-10T19:03:09.253Z</updated>
        <author>
            <name>Constant Contact</name>
        </author>
        <content type="application/vnd.ctct+xml">
            <ContactList id="http://api.constantcontact.com/ws/customers/testacct/lists/1">
                <OptInDefault>true</OptInDefault>
                <Name>General Interest</Name>
                <ShortName>General Interest</ShortName>
                <DisplayOnSignup>Yes</DisplayOnSignup>
                <SortOrder>0</SortOrder>
                <Members id="http://api.constantcontact.com/ws/customers/testacct/lists/1/members"></Members>
                <ContactCount>3</ContactCount>
            </ContactList>
        </content>
    </entry>
</feed>

Мой запрос пока выглядит так:

XDocument loaded = XDocument.Parse(response);

result = (from entry in loaded.Descendants("entry")
      select new CcList {
          LinkHref = entry.Element("link").Attribute("href").Value,
          Id = entry.Element("id").Value,
          Title = entry.Element("title").Value,
          Updated = entry.Element("updated").Value,
          ListName = entry.Element("content").Element("ContactList").Element("Name").Value,
          OptInDefault = entry.Element("content").Element("ContactList").Element("OptInDefault").Value,
          ShortName = entry.Element("content").Element("ContactList").Element("ShortName").Value,
          SortOrder = entry.Element("content").Element("ContactList").Element("SortOrder").Value
      }).ToList<CcList>();

Что я могу использовать в качестве предложения where ИЛИ есть ли лучший способ?

Ответы [ 2 ]

3 голосов
/ 10 ноября 2010
XDocument loaded = XDocument.Parse(response);

var result = (
          from entry in loaded.Descendants("entry")
          where entry.Descendants().Any(x => x.Name == "SortOrder")
          select new CcList {
             LinkHref = entry.Element("link").Attribute("href").Value,
             Id = entry.Element("id").Value,
             Title = entry.Element("title").Value,
             Updated = entry.Element("updated").Value,
             ListName = entry.Element("content").Element("ContactList").Element("Name").Value,
             OptInDefault = entry.Element("content").Element("ContactList").Element("OptInDefault").Value,
             ShortName = entry.Element("content").Element("ContactList").Element("ShortName").Value,
             SortOrder = entry.Element("content").Element("ContactList").Element("SortOrder").Value
          }).ToList<CcList>();
3 голосов
/ 10 ноября 2010

Вы можете попробовать:

var result = (
    from entry in loaded.Descendants("entry")
    where entry.Descendants("SortOrder").Count() > 0
    select new CcList {
        LinkHref = entry.Element("link").Attribute("href").Value,
        Id = entry.Element("id").Value,
        Title = entry.Element("title").Value,
        Updated = entry.Element("updated").Value,
        ListName = entry.Element("content").Element("ContactList").Element("Name").Value,
        OptInDefault = entry.Element("content").Element("ContactList").Element("OptInDefault").Value,
        ShortName = entry.Element("content").Element("ContactList").Element("ShortName").Value,
        SortOrder = entry.Element("content").Element("ContactList").Element("SortOrder").Value
    }
).ToList<CcList>();
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...