LINQ to XML 新手问题:读取 xml 并按属性排序

发布于 2024-08-05 06:50:34 字数 770 浏览 2 评论 0原文

我有一个菜鸟 LINQ to XML 问题。我有这样的 xml:

<pages>
    <page Name="Welcome" Control="Welcome" Order="1"></page>
    <page Name="Summary" Control="Summary" Order="10"></page>
</pages>

我需要读取数据并将其保存到按“Order”属性排序的数组中。这就是我所拥有的;编译器在 order by 子句上咳嗽。

//read in app.xml data into _Pages
XDocument doc = XDocument.Parse("app.xml");
XElement Pages = (XElement)doc.Descendants("pages");

var Pages1 =
  (from page in Pages  //<-- error on orderby clause
  orderby page.order
  select page).ToArray();

我搜索过 SO,发现了几个看起来像这样的 LINQ to XML 答案,但是说一下像 Pages 这样的对象中的 xml 片段。但永远不要表现出它的类型。

谢谢

编辑: 错误是:找不到源类型“System.Xml.Linq.XElement”的查询模式的实现。未找到“OrderBy”。

I have a noob LINQ to XML question. I have xml like so:

<pages>
    <page Name="Welcome" Control="Welcome" Order="1"></page>
    <page Name="Summary" Control="Summary" Order="10"></page>
</pages>

I need to read in the data and save it to an array ordered by the "Order" attribute. Here's what I have; the compiler is coughing on the order by clause.

//read in app.xml data into _Pages
XDocument doc = XDocument.Parse("app.xml");
XElement Pages = (XElement)doc.Descendants("pages");

var Pages1 =
  (from page in Pages  //<-- error on orderby clause
  orderby page.order
  select page).ToArray();

I've search SO and found several LINQ to XML answers looking like this, but say something about the xml fragment in an object like Pages. But never show it's type.

Thanks

EDIT:
The error is: Could not find an implementation of the query pattern for source type 'System.Xml.Linq.XElement'. 'OrderBy' not found.

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

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

发布评论

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

评论(2

音盲 2024-08-12 06:50:34

我猜你想要这样的东西:

using System.Linq;
using System.Xml.Linq;
namespace SampleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            string xml = @"<pages>   
                <page Name=""Summary"" Control=""Summary"" Order=""10""></page> 
                <page Name=""Welcome"" Control=""Welcome"" Order=""1""></page>
            </pages>";
            XDocument doc = XDocument.Parse(xml);
            XElement[] pages = doc
              .Descendants("page")
              .OrderBy(x => (int)x.Attribute("Order"))
              .ToArray();
        }
    }
}

这对你有用吗?如果 Order 属性始终是 int (我在这里做了假设),那么这是可行的。

I'm guessing you want something like this:

using System.Linq;
using System.Xml.Linq;
namespace SampleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            string xml = @"<pages>   
                <page Name=""Summary"" Control=""Summary"" Order=""10""></page> 
                <page Name=""Welcome"" Control=""Welcome"" Order=""1""></page>
            </pages>";
            XDocument doc = XDocument.Parse(xml);
            XElement[] pages = doc
              .Descendants("page")
              .OrderBy(x => (int)x.Attribute("Order"))
              .ToArray();
        }
    }
}

Does that work for you? This works providing the Order attribute is always an int (I have made an assumption here).

唔猫 2024-08-12 06:50:34

尝试 page.Attribute("order") 而不是 page.order。

Try page.Attribute("order") instead of page.order.

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