如何从 azure 函数中引用 Cosmos table API?

How to reference Cosmos table API from within azure function?

我正在尝试在 Azure 门户中编译我用 C# 脚本编写的项目(无法让任何其他环境运行)。

我正在尝试在我的函数中引用宇宙 table API:

#r "Newtonsoft.Json"
#r "Microsoft.WindowsAzure.Storage"
#r "Microsoft.Azure.WebJobs"
#r "Microsoft.Azure.WebJobs.Extensions"
#r "Microsoft.Azure.WebJobs.Extensions.Storage"
#r "Microsoft.Azure.Cosmos.Table"

using System;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Table;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host.Bindings.Runtime;
using Microsoft.Azure.Cosmos.Table;

但是它给我以下错误:

[Error] run.csx(6,1): error CS0006: Metadata file 'Microsoft.Azure.Cosmos.Table' could not be found
2019-09-26T13:50:37.115 [Error] run.csx(14,23): error CS0234: The type or namespace name 'Cosmos' does not exist in the namespace 'Microsoft.Azure' (are you missing an assembly reference?)

如何让 azure 函数找到引用?

此命名空间未包含在 Azure 函数中。需要自己将dll文件添加到Azure Function App中。详细步骤参考this article