I'm planning to use XML for database purpose. Only thing I was able to do is read whole XML file. I want to be able to read only some data and I don't know how to do that.
Here is a simple XML
<Books>
<Book>
<Title>Animals</Title>
<Author>J. Anderson</Author>
</Book>
<Book>
<Title>Car</Title>
<Author>L. Sawer</Author>
</Book>
</Books>
I'm interested in app where output is gonna be
Books:
Animals
Cars
Authors:
J. Anderson
L. Sawer
I'm just want to learn how read specific data from XML not whole file.
[SOLVED] I have used Linq to XML