I need to load XDocument from within an expression shape in BizTalk 2010 orchestration. I can do it in C#, without any issues.
XDocument xml = XDocument.Load(@"C:\Temp\Files\SampleFile.xml");
But in expression shape I don't have the XDocument.Load method. I would like to use Linq to XML. Is this possible?