I'm writing a program that reads an XML (Element only) and stores the value into database.
But there are such no methods in XmlReader Class to get the name/value of Parent Node of a child node. Is there any workaround or should i use any other parser.
As MSDN says about XmlReader:
Сonsidering that, XMLReader is better for processing large XML. If that is your case, you need to store info about parent node before you move to process nested nodes. But if you work with small XML, tha better choise to process nodes is LINQ to XML (as @Juriewicz Bartek has advised to you), that make related navigation easier.