Title: Visual Studio C# - LINQ - LINQToXML - Lesson III
Duration: 15:20 min
Description: In previous videos we loaded an existing xml file and queried existing books. In this video, we will parse the xml from a string, and apply from/where/select to the parsed xml. Then, we will see how we can select the descendants of an element using the Descendants() method.
Methodology: Using LINQ as a library to abstract away reading XML data.
Technologies: XML, LINQ, LINQtoXML.
Examples constructed: Continue the mini-examples that parse an xml string, then
retrieve data from it using from..where..select.
Key words: XML, XDocument, XElement, parse, cast, Descendants(), foreach.