Book List XSLT Programmers Reference Michael Kay
from the given Xml document,I want to iterate all <blist:books>
elements.
(i.e) How to i handle the namespace ?
i tried
XNamespace blist = XNamespace.Get("http://www.wrox.com/books/xml");
XElement element = XElement.Load("Books.xml");
IEnumerable<XElement> titleElement =
from el in element.Elements(blist + "books") select el;
but the enumeration (titleElement) does not return any result.