Home > Software design >  How to utilize a .NET SDK inside Azure Function App?
How to utilize a .NET SDK inside Azure Function App?

Time:11-05

I am trying to figure out how to utilize a .NET SDK into Azure Function.

What I am trying to do is pull data from a third party app called Sage's Intacct thru web service and push data into Azure SQL Server.

This is data flow: (Sage's Intacct --> Azure Function --> Azure Data Factory --> Azure SQL Server).

I have a .NET Nuget SDK ( enter image description here

I am trying to modify config file so I could grab data from Sage's Intacct thru web service (Http).

From other discussion thread, I got the tip that I probably need to use "HTTP Triggered Function".

Now, my challenge is, how do I utilize the Nuget package (Intacct.SDK) with Azure Function?

If I open a new solution file, I could see details of this package, but from here, I cannot publish cs file into Azure Function.

enter image description here

What is approach? Thanks.

CodePudding user response:

The workflow is a bit confuse, but you should be able to add Sage Intacct using Nuget:

https://www.nuget.org/packages/Intacct.SDK/

Then, it will be a dependency of your project which will be deployed together with you Azure Function code.

  • Related