I created a Timer Azure
Function that called an API and wrote that json
response to Azure
SQL DB.
I wanted to continue my project, so I created an Azure
Functions App in VS2017
. I moved my code over and changed the #r script reference to the precompiled reference for the sqlclient.
From: (script calls)
r System.Configuration
r System.Data"
TO: (pre-compiled calls)
using System.Configuration;
using System.Data.SqlClient;
using System.Threading.Tasks;
Now I'm receiving a missing assembly reference for "System.Data.SqlClient" and I'm not sure how to add it to my Azure Functions App project in VS.