在 linq 查询中解析 XML

发布于 2024-10-26 21:21:11 字数 399 浏览 2 评论 0原文

我有一个从我的数据库收集的页面列表。每个页面都有一个 XML 字段,看起来像这样:

<items>
  <item id="153"/>
  <item id="147"/>
</items>

现在我只想要指向 XML 中特定 id 的页面。所以像这样的事情:

var pages = GetAll().Where(p => p.XmlField //this is where i'm lost

我想做这样的事情:

p.XmlField.Descendants().Where(x => x.Attribute("id") == id

I have a list of pages collected from my database. Each page has an XML field, which looks something like this:

<items>
  <item id="153"/>
  <item id="147"/>
</items>

Now I only want the pages which points to a specific id within the XML. So something like this:

var pages = GetAll().Where(p => p.XmlField //this is where i'm lost

I'd like to do something like this:

p.XmlField.Descendants().Where(x => x.Attribute("id") == id

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纵山崖 2024-11-02 21:21:11

如果您想检查 XmlField 中的任何 item 是否具有正确的 ID:

var pages = GetAll().Where(p => p.XmlField
                                 .Descendants("item")
                                 .Any(x => (int) x.Attribute("id") == id));

或者您可能想要使用类似于:

var pages = from page in GetAll()
            from item in page.XmlField.Descendants("item")
            where (int) item.Attribute("id") == id
            select page;

如果 XML 两次具有相同的 ID,则会出现重复的页面。

If you want to check whether any item within the XmlField has the right ID:

var pages = GetAll().Where(p => p.XmlField
                                 .Descendants("item")
                                 .Any(x => (int) x.Attribute("id") == id));

Alternatively you might want to use something like:

var pages = from page in GetAll()
            from item in page.XmlField.Descendants("item")
            where (int) item.Attribute("id") == id
            select page;

That will give you repeats of pages if the XML has the same ID twice though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文