I have a data flow in Azure Data Factory The source contains timestamps in local time The sink is a SQL that is running on UTC
In the DataFlow, I can convert the timestamp to UTC using the following command
toUTC(timestamp, "Romance Standard Time")
But that does not take into account DST.
Is there a way to do this directly in the dataflow ?