我正在尝试在SSIS脚本任务中加载XML文件 这有效:
Not ("string1" == "string2")
但这不是:
var fullpath = "E:/perforce_ws/EnterpriseTrunk/SSIS/Inbox/RCT_Import_1.xml";
var xml = XDocument.Load(fullpath);
返回的错误是
“无法将方法组分配给隐式类型变量”。
我哪里出错?
答案 0 :(得分:1)
ToString
是一个方法组。
ToString()
是方法调用。
您要找的作业代码是
var fullpath = Dts.Variables["XMLFullPath"].Value.ToString();