I have the following XML
:
<clientes>
<cliente>
<documentos/>
<livros>
<livro nome="Nome1"/>
<livro nome="Nome2"/>
</livros>
</cliente>
<cliente>
<documentos/>
<livros>
<livro nome="Nome1"/>
<livro nome="Nome3"/>
</livros>
</cliente>
</clientes>
How do I retrieve a list of all its distinct books using Linq
?