0

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?

4

1 に答える 1

1

アセンブリへの参照を追加System.Xml.Linqし、式形状で完全修飾型名を使用します。

System.Xml.Linq.XDocument.Load(strUri);

これが役立つことを願っています。

于 2013-05-31T09:28:04.513 に答える