Hello Kumar, Arun,
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others", I'll repost your solution in case you'd like to "Accept" the answer.
Issue:How to use Json list as merge condition in synapse data flow
Using a dataflow to do upsert on target delta table (source is also delta table). Source data have a json key value pair in one of the columns (transaction) and need to use that as Key Column. The data in transaction column is like below
{"ce":0.29,"cec":0.0002964954,"ceum":{"base_unit_id":"k2k0","from_base":"0.001","id":"k2l0","to_base":"1000","unit_abbreviation":"t","unit_class_id":"oonrg","unit_name":"metric tonne"}
How to use that transaction column which is a list/array as a Key Column in data flow.
Solution:
One solution that resolved the issue was flattening the transaction column through PySpark and then performing a Delta merge using the notebook.
If I missed anything please let me know and I'd be happy to add it to my answer, or feel free to comment below with any additional information.
I hope this helps!
Please remember to "Accept Answer" if any answer/reply helped, so that others in the community facing similar issues can easily find the solution.