c#Azure数据工厂管道的copyActivity中的TabularTranslator(源列和汇点列的映射)的代码



我想用copyActivity创建一个ADF管道,但我在为TabularTranslator(源列和汇点列的映射(编写c#代码时遇到了困难:

Translator = new TabularTranslator
{
// Mapping
}  

有人能帮我查一下密码吗?

您可以使用Dictionary<string, object>,并在其中添加源和接收器作为stringobjects

例如:

Dictionary<string, object> mappings = new Dictionary<string, object>();
mappings.Add("source", new {
name = "test",
type = "string"
});

然后可以将mappings对象添加到转换器中。

相关内容

  • 没有找到相关文章

最新更新