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?

link|improve this question

43% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I think if you change Attributes to Attribute and ToString to Value and you should be there

Dim query = _ 
    From p In MyPermissionXml.Elements("menuNode").Descendants("menuNode") _ 
        Where p.Attribute("title").Value = "Company"
link|improve this answer
do you have any tutorial for this subject-Linq Query?? – Vibin Jith Feb 4 '10 at 5:09
@Vibin - not specifically no. Learnt mine from a combination of reading Linq in Action (manning), and of actually doing stuff with reference to numerous blogs etc. – Murph Feb 4 '10 at 8:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.