i am new in azure data factory V2
i have schema file-
CustomerSchema.csv
Data-in CSV File
CustomerId, CustomerName, CustomerAddress
Actual Data File in CSV Formatoe FileName-CustomerMaster.CSV, data below
101,Aphilps,R-z1 west loan usa
102,Jons s,202-3 sest road london
103,Ravi,Old Madaras banglore
104,n Har,hi road -203 banglore
105,Jons K,West-23-34 new york usa
Target File with Schema CustomerTraget.CSV
CustomerId, CustomerName, CustomerAddress ----Blank no Data
i have pipline where first activity is lookup activity that bring schema from file CustomerSchema.CSV
output of lookup activity is correct, it's fetch 3 Columns name
Now how i passed output of lookup activity in my copy activity import schema expression
i have try below but not work
@activity('ColumnLookup').output.firstRow in schema expression but it's not working
please help me
