これに似た構造を持つ非常に単純なシナリオがあります
<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>
次に、ミラノに行くすべてのツアーをクエリしたいと思います。
以下は、EX4 スタイルに基づいて考えることができる論理形式です。
XmlData.tour.(destinations.destination.(name == "Milan"))
しかし、もちろんこれはうまくいきません。
追加のロジックを使用せずにこのデータを取得する正しい方法は何ですか?