Reputation: 173
I have a data flow which takes startTime and endTime as parameters and I am passing the values to these parameters via a pipeline using pipeline expression but the expression is not evaluated rather its considered as string. Attached the Images
Upvotes: 0
Views: 558
Reputation: 173
I found out the root cause,
So the working expression was which gives CURRENT EPOCH TIME
@div(sub(ticks(startOfDay(utcNow())),ticks('1970-01-01T00:00:00.0000000Z')),10000000)
Upvotes: 2