我一直在使用edge.js从我的Node.js应用程序中调用C#函数,但是当我去执行C#代码时,我得到了例如:
无法找到元数据文件'System.Collections.Generic.dll'
无法找到元数据文件'System.Text.dll'
...
我的代码如下所示,基本上想要使用我从C#调用的存储过程来运行SSIS包。基本上所有我引用的dll都找不到?我应该把dll放在哪里找到它们?
var executeSQL = edge.func(function() {
/*
#r "System.Data.dll"
#r "System.Collections.Generic.dll"
#r "System.Linq.dll"
#r "System.Text.dll"
using System.Linq;
using System.Text;
using System.Data;
using System.Collections.Generic;
using System.Threading.Tasks;
public class StartUp
{
public async Task<object> Invoke(object input)
{
string result = string.Empty;
string packagePath = @"\SSISDB\test\package.dtsx";
string spName = "storedProcName";
using (var conn = new System.Data.SqlClient.SqlConnection("connectionString"))
using (var command = new System.Data.SqlClient.SqlCommand(spName, conn)
{
CommandType = System.Data.CommandType.StoredProcedure
})
{
conn.Open();
command.Parameters.AddWithValue("@PackagePath", packagePath);
command.ExecuteNonQuery();
Console.WriteLine("Finished");
};
return null;
}
}
*/
});
我知道我可以在没有C#的情况下执行此操作,只需使用mssql之类的节点中的模块来执行存储过程,但这只是一个习惯于使用edge.js的示例测试
答案 0 :(得分:0)
有人知道上面的答案,#34;在同一目录下是脚本&#34;,是否正确?我找不到相同的元数据文件找不到&#39;。 BenYeomons,那对你有用吗?
答案 1 :(得分:0)
来自stuartd的评论在将dll放在与脚本相同的目录(我曾尝试过)的意义上是正确的,但我仍然遇到同样的问题。我通过将C#代码作为单独的文件解决了我的问题,然后将该文件作为executeSSIS函数的一部分引用如下。 payload只是从我的node.js脚本传递到我的C#脚本的对象。这样做解决了我的问题。
var payload = {
filePath: 'C:/temp/xlsx/' + req.file.filename,
path: req.packageName,
server: req.server
};
var executeSSIS = edge.func({
source: __dirname + '/cs/Program.cs',
references: [
__dirname + '/cs/System.Data.dll'
]
});
executeSSIS(payload);