Forum Discussion
jonesb321
Jun 03, 2020Copper Contributor
Convert Arrays or Complex Types (JSON) to string in Data Flow
The current scenarios allow you to convert Arrays or Complex Types (JSON) into single columns or convert columns into JSON. However, is there a way to convert the JSON into a string representation f...
jonesb321
Jul 07, 2020Copper Contributor
Essentially, I want something similar to this: JsonConvert.SerializeObject(additionalData).
Currently, I am working around this by calling an Azure Function that adds a new property "serializedAdditionalData" that contains the results of JsonConvert.SerializeObject(myJson.additionalData). Since I was already making the func call, it isn't terrible, but I would prefer to do this within the data flow.