VB.NET:在 Linq 中填充列表

发布于 2024-09-15 00:51:26 字数 960 浏览 6 评论 0原文

假设我有以下 XML 文件:

<Movies>
     <Movie ownerName="Ryan">
          <Title>The Lord of the Rings Trilogy</Title>
          <Title>Saving Private Ryan</Title>
          <Title>etc</Title>
     </Movie>
     <Movie ownerName="Rynina">
          <Title>Foo</Title>
          <Title>Bar</Title>
     </Movie>
</Movies>

我需要使用 Linq to Xml 来检索 MovieCollection 类型的类。 MovieCollection 有两个属性,OwnerName (String) 和 Movies (List(Of String))。

一般来说,我会这样做:

From entry in movies...<Movie>_
Select New MovieCollection With { _
.OwnerName = [email protected], _
.MovieCollection = entry.<Title>.Value}

但是在这种情况下,这显然行不通。无论如何,是否可以使用 Linq 使用该所有者发生的所有电影来填充 MovieCollection 列表?

Assume I have the following XML file:

<Movies>
     <Movie ownerName="Ryan">
          <Title>The Lord of the Rings Trilogy</Title>
          <Title>Saving Private Ryan</Title>
          <Title>etc</Title>
     </Movie>
     <Movie ownerName="Rynina">
          <Title>Foo</Title>
          <Title>Bar</Title>
     </Movie>
</Movies>

What I'm after is using Linq to Xml to retrieve classes of type MovieCollection. MovieCollection has two properties, OwnerName (String) and Movies (List(Of String)).

Generally, I'd do something like:

From entry in movies...<Movie>_
Select New MovieCollection With { _
.OwnerName = [email protected], _
.MovieCollection = entry.<Title>.Value}

However in this case this obviously wont work. Is there anyway to fill the MovieCollection list with all the movies that occur for that owner using Linq?

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

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

发布评论

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

评论(2

戈亓 2024-09-22 00:51:26

您确实应该将标签命名为 Movie MovieCollectionTitle Movie

使用以下命令解析您的 XML:

Dim doc = XDocument.Parse("<xml>")

Dim doc = XDocument.Load("path")

并使用:

Dim movieCollections = From movieCol In doc.Root.Elements("Movie")
                       Select New MovieCollection() With
                              {
                                    .OwnerName = movieCol.Attribute("ownerName"),
                                    .Movies = movieCol.Elements("Title")
                                                      .Select(Function(m) m.Value)
                                                      .ToList()
                              }

You should really name the tags Movie MovieCollection and Title Movie.

Parse your XML with:

Dim doc = XDocument.Parse("<xml>")

or

Dim doc = XDocument.Load("path")

and use this:

Dim movieCollections = From movieCol In doc.Root.Elements("Movie")
                       Select New MovieCollection() With
                              {
                                    .OwnerName = movieCol.Attribute("ownerName"),
                                    .Movies = movieCol.Elements("Title")
                                                      .Select(Function(m) m.Value)
                                                      .ToList()
                              }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文