Asure Timer Function using the isolated worker model
I’m new to using the isolated worker model in .NET8. I’m trying to create a new function that will execute daily at a specific time. I’ve spent several days looking at the documentation on how to use the isolated worker for a timer function but seem to be getting lost in the weeds. I tried the MS Learn example, but that is a http trigger. not sure how to set up the application for a timer trigger. Any help in where I might find a solution would be appreciated.
Avoiding time zone translation for serialized strings containing dates when using Cosmos DB trigger
We’re converting our Cosmos DB triggered Azure function from in-process model to isolated.
Since we want to retain ability to use fluent JSON schema, we’re not using a POCO class for trigger inputs and use JObject
instead.