I created a Timer Azure
Function that called an API and wrote that json
response to Azure
SQL DB.
プロジェクトを継続したかったので、Azure
.NET で関数アプリを作成しましたVS2017
。コードを移動し、#r スクリプト参照を sqlclient のプリコンパイル済み参照に変更しました。
From: (スクリプト呼び出し)
r System.Configuration
r System.Data"
TO: (pre-compiled calls)
using System.Configuration;
using System.Data.SqlClient;
using System.Threading.Tasks;
現在、"System.Data.SqlClient" の欠落しているアセンブリ参照を受け取っています。それを VS の Azure Functions アプリ プロジェクトに追加する方法がわかりません。