У меня есть веб-приложение .NET Core 2.2, и я пытаюсь связаться с моим ресурсом хранилища таблиц Azure.Что у меня есть до сих пор:
using Microsoft.WindowsAzure.Storage;
using Microsoft.Azure.CosmosDB.Table;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebApplication1.Repositories
{
public class AssetRepository
{
public AssetRepository()
{
CloudStorageAccount storageAccount = CloudStorageAccount.Parse("cstring");
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
}
}
}
Однако, когда я наведите курсор мыши на CreateCloudTableClient
, я вижу Reference to type CloudStorageAccount claims it is defined in Microsoft.Azure.Storage.Common but it could not be found.
Как мне выполнить базовую таблицу CRUD из веб-приложения .NET Core 2.2