We want to filter the data from a Table Storage since the first day of the last month using the utcnow() function.
For this we are applying a workaround in the first 5 days of the month using the following query: Timestamp ge datetime'@{formatDateTime(adddays(utcnow(),-5),'yyyy-MM-01')). However this implementation is limited to the trigger until a specific day of the month.
Is there any other way to use a function as addmonths(-1) for this query?
Thanks in advance!