I am implementing a data flow in which I need to insert rows into two different sink and both of the sink are Azure SQL database tables.
The first sink i.e. the first Azure SQL database table has an auto generated ID column. After inserting values in the first table, we need to insert the values in the second sink which is an audit table.
Now the problem is that the identity column values generated in the first sink needs to be inserted in the second sink also. How can I get these auto incremented id column values to be inserted in the audit table.