I have an XML file of the following structure
<Root>
<Child Name="First">
<Data Name="a" val="0"/>
<Data Name="b" val="1"/>
<Data Name="c" val="20"/>
<Data Name="d" val="10"/>
<Data Name="e" val="2"/>
<Data Name="f" val="0"/>
<Data Name="g" val="0"/>
<Data Name="h" val="0"/>
</Child>
<Child Name="Second">
<Data Name="a" val="0"/>
<Data Name="b" val="0"/>
<Data Name="c" val="0"/>
<Data Name="d" val="0"/>
<Data Name="e" val="0"/>
<Data Name="f" val="0"/>
<Data Name="g" val="50"/>
<Data Name="h" val="30"/>
</Child>
</Root>
and a dictionary like
Dictionary<String, Dictionary<String, String>> Dict = new Dictionary<string, Dictionary<string, string>>();
i need to add the data from the xml file to the dictonary like
First b 1
c 20
d 10
e 2
second g 50
h 30
i need to add only the data element whose "val" attribute value is not equal to zero
Now i'm using nested for loops to do this .
Is there any way to do this using XML to LINQ