Is it possible to add an Azure Functions project to a .Net Core Api Solution and use a common repository?

Viewed 142

Our team has an existing .Net Core API solution. I'd like to add a series of function apps in a V2 functions project. This would allow reuse of the existing database repositories.

Is this possible / rational?

1 Answers

It is possible and rational. You can deploy just the functions app project, and have it running on Azure. Just remember to redeploy whenever there is a change in the dependent projects.

Related