linq to xml - XDocument.Load not available in expression shape (orchestration) in BizTalk 2010 -


i need load xdocument within expression shape in biztalk 2010 orchestration. can in c#, without issues.

xdocument xml = xdocument.load(@"c:\temp\files\samplefile.xml"); 

but in expression shape don't have xdocument.load method. use linq xml. possible?

add reference system.xml.linq assembly , use qualified type name in expression shape:

system.xml.linq.xdocument.load(struri); 

i hope helps.


Comments