gpt4 book ai didi

azure - 创建 Azure 表架构

转载 作者:行者123 更新时间:2023-12-03 06:04:59 24 4
gpt4 key购买 nike

我想知道如何使用架构创建 Azure 表而不向其中插入任何实体。使用以下代码在 azure 上创建一个表:

StorageCredentialsAccountAndKey accountAndKey = new StorageCredentialsAccountAndKey("accountName", "accountKey");

CloudStorageAccount storageAccount = new CloudStorageAccount(accountAndKey, true);

CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

string tableName = "mytable";

tableClient.CreateTableIfNotExist(tableName);

如何在创建表时指定架构。我需要创建一个空表(没有任何记录),其中包含自定义字段,例如 CustomerFirstName、CustomerLastName、Age..

问候,维韦克

最佳答案

Windows Azure 表没有架构,因此无法执行此操作。

(警告:由于实现的意外,本地存储模拟器本质上具有模式。如果您正在使用模拟器,您可以尝试插入然后立即删除具有您关心的所有属性的实体。这将对云存储没有影响,但模拟器会错误地保留一些架构。)

关于azure - 创建 Azure 表架构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12546426/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com