如何在 vb.net 中编写 xml 的 linq 查询?
我想为我的 xml 编写一个链接查询。其实我不知道。 我在这里写了一些代码。
Dim query = _
From p In MyPermissionXml.Elements("menuNode").Descendants("menuNode") _
Where p.Attributes("title").ToString = "Company"
从where子句来看,我认为这是错误的。这里如何表示一个属性?
I want to write a link query for my xml. Actually i dont know it.
i have write some code here.
Dim query = _
From p In MyPermissionXml.Elements("menuNode").Descendants("menuNode") _
Where p.Attributes("title").ToString = "Company"
from where clause , i think it's wrong. how to represent an attribute here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想如果你将 Attributes 更改为 Attribute,将 ToString 更改为 Value,你应该在那里
I think if you change Attributes to Attribute and ToString to Value and you should be there