I have a .NET Core 2.2 Web Application and I'm trying to talk to a my Azure Table Storage resource. What I have so far:
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();
}
}
}
However when I hover over CreateCloudTableClient I see Reference to type CloudStorageAccount claims it is defined in Microsoft.Azure.Storage.Common but it could not be found.
How do I perform basic Table CRUD from within a .NET Core 2.2 web app?