How to deduce value from ADF.NET user activity

I have an ADF that takes Dataset input from Azure Data Lake Storage, then it has a pipeline with user .NET activity. The action moves the files from the Import folder to the custom folder folder, ready for processing, and then deletes the original file.

I want to be able to pass the location of the custom folder back to the action pipeline so that I can pass it on to the next action.

Is there a way to output a custom folder string to the operations pipeline?

Thank,

+4
source share
1 answer

, . . :)

:

: Activity1:

(...)

{

{ " Foo", "Value" }

}

: Activity2 Json:

"extendedProperties": { "ValueOfFoo", " $$ Foo" }

+1

Source: https://habr.com/ru/post/1662972/


All Articles