I have the following node:
<NodeA desc="Cheap Item 1" category="Cooking" />
I selected the 'category' attribute using the following:
.Where(attr => attr.Name == "category")
.Select(attr => attr.Value);
How can I select both the 'desc' and 'category' now