LINQ to XML 新手问题:读取 xml 并按属性排序
我有一个菜鸟 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜你想要这样的东西:
这对你有用吗?如果 Order 属性始终是 int (我在这里做了假设),那么这是可行的。
I'm guessing you want something like this:
Does that work for you? This works providing the Order attribute is always an int (I have made an assumption here).
尝试 page.Attribute("order") 而不是 page.order。
Try page.Attribute("order") instead of page.order.