LINQ to XML join with idref

I have a XML structure like the following:\[code\][...]<Fruits> <Fruit> <Specification>id_1001_0</Specification> <Weight>23</Weight> </Fruit></Fruits><FruitSpecification id="id_1001_0"> <Type>Apple</Type></FruitSpecification>[...]\[/code\]I want to use Linq to XML to read this into (non-anonymous) objects.Let
 
Back
Top