- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 .NET Core 2.2 Web 应用程序,我正在尝试与我的 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.
如何在 .NET Core 2.2 Web 应用中执行基本的表 CRUD?
最佳答案
您似乎混淆了新旧程序集。
using Microsoft.WindowsAzure.Storage;
using Microsoft.Azure.CosmosDB.Table;
可以使用对 Microsoft.Azure.CosmosDB.* 的较新 NuGet 引用,也可以使用较旧的 Microsoft.WindowsAzure.Storage 程序集,但不能同时使用两者。
例如:
using Microsoft.Azure.CosmosDB.Table; // replaces Microsoft.WindowsAzure.Storage.Table
using Microsoft.Azure.Storage; // replaces Microsoft.WindowsAzure.Storage
关于.net - CloudTableClient 与.NET Core 不兼容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53803969/
如何为依赖于 Azure 表存储的类编写单元测试,即 Microsoft.Azure.Cosmos.Table.CloudTableClient ? 我发现了这个 GitHub 问题,Azure St
使用 CloudTableClient 时,我看到三个选项: (1) 每次需要访问云表时创建一个新客户端。 (2) 在应用程序启动时创建一个新客户端,并在所有需要访问的资源之间共享它。 (3) 在应用
我正在使用新的 WindowsAzure.Storage 2.0(可能不是相关信息),并且我正在使用 CloudTableClient 实现数据访问。我见过的大多数示例都是在 ASP MVC Cont
我在这里关注 Azure 关于 Java API 的基本教程:https://www.windowsazure.com/en-us/develop/java/how-to-guides/table-s
经过一些研究后,我仍然不确定如何最好地保持与 Azure 表存储的“连接”。是否应该跨请求重用 CloudTableClient 或 CloudTable 实例? 我们在公共(public)高流量 A
我有一个 .NET Core 2.2 Web 应用程序,我正在尝试与我的 Azure 表存储资源进行通信。到目前为止我所拥有的: using Microsoft.WindowsAzure.Storag
我正在努力寻找一些关于是否应该在 ASP.Net WebAPI 应用程序中共享 Azure 表存储对象集实例的真正指导。 为了完整起见,从表存储中检索实体如下所示。 当在数据层中集成类似的东西时,我在
我知道 CloudTableClient.BaseUri.AbsoluteUri 返回一个表示主端点的字符串值。但是,如果出现故障,该值是否会更新到辅助端点? 最佳答案 根据document ,Clo
我正在考虑使用 Azure AD 来验证对 Azure 存储帐户的访问。 https://learn.microsoft.com/en-us/azure/active-directory/manage
我正在构建 Outlook WEB 插件,并将 Microsoft.Azure.Storage.Common 和 Microsoft Azure.CosmosDB.Table nuget 添加到我的项
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 3 年前。 Improv
我把头撞在墙上,试图找出为什么我缺少这个功能。 缺少 CloudTableClient GetTableReference var tableClient = new CloudTableClient
我使用 Microsoft.WindowsAzure.Storage C# 库通过存储凭据访问我的 Azure Table Storage 帐户,如下所示。 _CloudStorageAccount
我是一名优秀的程序员,十分优秀!