什么是适用于具有 Azure 应用服务的 Azure 表存储的正确实体类型



>我正在使用Azure App Services和Azure Table Storage从Azure-WebSite测试Todo-Item-Example。

在 Azure 下载示例中,DataEntity-Class继承自 EntityData ,但在所有其他教程中,DataEntity-Class继承自 TableEntity2015年9月更新文件中DataEntity-Class继承自StorageData

请告诉我,什么是正确和最新的方法。

回合:

我想在 Azure 表存储中设置partitionKeyrowKey

我怎样才能用StorageDataEntityData来设置partitionKeyrowKey.只有在TableEntity我才能设置这些键,但是我还必须实现ITableData-Interface才能在我的TableController中使用TodoItem

你会

想要从TableEntity继承。请查看此处的表存储示例代码,以获取从TableEntity继承的类的示例:

https://github.com/Azure-Samples/storage-table-dotnet-getting-started/blob/master/TableStorage/Model/CustomerEntity.cs

我将其切换为使用StorageData而不是EntityData。它实现相同的接口,并提供PartitionKeyRowKey的访问器。它可以在Microsoft.Azure.Mobile.Server.Storage包中找到。

相关内容

  • 没有找到相关文章

最新更新