How do I take this XML and filter out the menu element that is marked as expert using XLINQ and return the rest?
<data>
<preferences />
<menus>
<menu type="expert">
<sub />
</menu>
<menu type="beginner">
<sub />
</menu>
</menus>
</data>
So the result would be:
<data>
<preferences />
<menus>
<menu type="beginner">
<sub />
</menu>
</menus>
</data>