0
所以,我只需要那些立即在<and>
之內而不在<not>
之內的那些等值的值。所以,我需要以下內容:7942和6252.我如何得到這些?如何使用linq解析此xml?
<aaa>
<and>
<equal ident="qwe">7942</equal>
<equal ident="qwe">6252</equal>
<not>
<equal ident="qwe">1056</equal>
</not>
<not>
<equal ident="qwe">6562</equal>
</not>
</and>
</aaa>
你還沒說什麼是錯的,你的查詢不使用'這是要使它更難varequal' ... –
我只是試圖找出究竟需要成爲linq查詢,因爲無論我使用的是不正確的,並沒有檢索任何值。 – user2085236
您的XML無效 - ''標籤需要有一個匹配的' '標籤,但是您有''。 –
Tim