I'm definetely new to Azure and want to know what would be the best solution/practice to my requirement.
I have a class library project that consists of all business logic for our project.
Now, I have a requirement were I need a job that will trigger/invoke a method from that class library.
We are creating a timer based Azure function that will invoke the method.
Solutions that we are thinking are:
- Reference the class library project to the Azure function project.
- Deploy the class library somewhere in Azure (App service or something..) and have the Azure function invoke the method(if this is even possible)
Any suggestion would be appreciated. Thanks!