I need to make 2 xPath(s) where it displays the Procedure's description:
- IF EVERY Step finished is equal to "True"
- If only one of Step finished is true.
XML File:
<Procedures>
<Procedure>
<description>Work1</description>
<Steps>
<Step finished="False" no="1">Step1</etape>
<Step finished="False" no="2">Step2</etape>
<Step finished="False" no="4">Step3</etape>
<Step finished="True" no="5">Step4</etape>
</Steps>
</Procedure>
</Procedures>
What I've tried:
- Expected to see the procedure's description if every step finished is equal to True but it does not work.
XmlNodeList testList = doc.SelectNodes("//Procedure/description[//Step/@finished='True']");
These are the two approaches:
EVERY Step finished is equal to "True"
ONLY one of Step finished is "True"
Of course
/Procedures/Procedure...
can be replaced by//Procedure...
.