I'm using LINQPad to query and visualize XML files with C#. For example:
var xml = XElement.Load(@"C:\file.xml");
xml.Elements().Where(e => e.Element("trHeader").Element("trTickNum").Value == "1").Dump();
However, I'd like run a query using SQL rather than C#.
Is there a way to load an XML which contains nested elements and query its table(s) using LINQPad's SQL option?