I have a very simple scenario where I have a structure similar to this
<tours>
<tour>
<name>Italy 1</name>
<destinations>
<destination>Rome</destination>
<destination>Milan</destination>
<destinations>
</tour>
<tour>
<name>Italy 2</name>
<destinations>
<destination>Rome</destination>
<destination>Venice</destination>
<destinations>
</tour>
</tours>
Now I want to query all the tours that go to Milan.
Below is the logical format that I can think of based on EX4 style
XmlData.tour.(destinations.destination.(name == "Milan"))
But of course this doesn't work.
What is the correct way of pulling this data without using any extra logic?