I have a XML xElement like:
<Play>
<Trick Lead="E" Win="S" TNum="1">S3.S2.S4.SA></Trick>
<Trick Lead="S" Win="N" TNum="2">DK.DA.D6.DQ></Trick>
..../...
<Trick Lead="" Win="" TNum="7"></Trick>
.../...
<Trick Lead="" Win="" TNum="13"></Trick>
</Play>
In order to get rid of Trick nodes where value is null, I wrote:
myXmlElement.<Play>.<Trick>.Where(Function(m) m.<Trick>.Value = "").Remove()
Which works very well... Actually it works far too well, since ALL trick nodes are removed!
What do I do wrong? Is there a simpler way to proceed, without lambda expression?
linq, but I'm kinda wondering about this part:Value = ""?. Shouldn't you compare it to"", not set it to""? I'd try using this:Value == ""(I'm pretty sure I'm wrong). – Blender Apr 19 '11 at 16:12