Is there a way to insert a document with a nested array in Azure Data Factory?
问题 I am trying to add documents in CosmosDb that has a nested array. I am using the Copy Activity . Sample Document: { "itemNumber": "D10001", "readings" : [ { "value": 25, "ets":"100011111"}, { "value": 35, "ets":"100011122"} ] } In the source dataset I formatted the readings array as a string in my SQL query, and set the data type in the sink dataset as an Object . The data is copied, but the readings are stringified. Is there a means to configure the Copy Activity to handle this array? 回答1: