Azure Function 中没有从表到 ITableEntity 的隐式引用转换
我正在编写第一个 Azure Function 和 Azure 表代码。当我编写 Get 查询函数时遇到问题。我有以下代码将尝试从表中获取所有作业。 public static class…
Azure 表存储:使用现有属性作为 PartitionKey 和 RowKey
我有一个模型,其中现有字段已经非常适合 RowKey 和 PartitionKey,但我不知道如何分配它们并且不包含重复数据。考虑这个例子: public class ClassA …
Azure 表存储 - 保存正在工作,但正在检索数据 - 无法获取记录中的所有字段
我有以下类代表存储表中的记录: using Newtonsoft.Json; using Azure.Data.Tables; using System; using Azure; namespace MyProject.Models { publi…
Azure 表存储 - 尝试 GetEntity 返回错误消息 CS0311
我有以下方法: public async Task MarkAsProvisioned( string requestId) { try { //populate the connection object: GetStorageAccountConnectionD…
与本地模拟器发生连接错误
在我的 Azure 应用程序中,当我尝试连接到本地模拟器时,出现错误。 我收到错误的代码行是: CloudStorageAccount CSC = CloudStorageAccount.Parse( …
我可以从 Windows Azure 表存储中仅检索某些字段吗
我有以下课程: public class Menu : TableServiceEntity { public string Order { get; set; } public string Text { get; set; } public int Length…
使用 Azure 表可以实现这一点吗?
我在下面的 linq 查询中收到一条错误消息“不支持‘join’方法”: tableServiceContext = new CustomTableServiceContext(storageAccount.TableEndpo…
如何使用 Moq 对带有存根的 Windows Azure 表查询进行单元测试?
我无法让我的单元测试正常工作。 它在我进行的集成测试中有效,它实际上会到达 Azure 表存储。 我猜的问题是对属性 QueryableEntities 的模拟,它从模…
集中 CloudStorageAccount 和 TableServiceContext 实例
在 ASP.NET MVC 3 Web 角色中,我意识到我已经编写了很多下面的代码: var account = CloudStorageAccount.Parse( RoleEnvironment.GetConfigurationS…
是否可以使用 Azure 表存储进行条件插入
是否可以使用 Windows Azure 表存储服务进行条件插入? 基本上,我想要做的是将新行/实体插入到表存储服务的分区中,当且仅当自我上次查看以来该分区…