我想用copyActivity创建一个ADF管道,但我在为TabularTranslator(源列和汇点列的映射(编写c#代码时遇到了困难:
Translator = new TabularTranslator
{
// Mapping
}
有人能帮我查一下密码吗?
您可以使用Dictionary<string, object>
,并在其中添加源和接收器作为string
和objects
。
例如:
Dictionary<string, object> mappings = new Dictionary<string, object>();
mappings.Add("source", new {
name = "test",
type = "string"
});
然后可以将mappings对象添加到转换器中。