如何使用 C# 在 Azure table 存储中自动生成 RowKey

How to auto generate a RowKey in a Azure table storage using C#

我正在尝试将 RowKey 从 Micorosft 文档教程中的预定义姓氏更改为唯一值:https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-how-to-use-dotnet#add-an-entity-to-a-table

这是我当前的代码:

private void storeuserinput(Activity activity)
        {
            var uid = activity.From.Id;
            var uname = activity.From.Name;

            if (activity.Text?.ToLower().ToString() == "no" || activity.Text?.ToLower().ToString() == "NO" || activity.Text?.ToLower().ToString() == "No" || activity.Text?.ToLower().ToString() == "Nope" || activity.Text?.ToLower().ToString() == "nope")
            {
                var userinput = firstmessage;

                string connectionString = CloudConfigurationManager.GetSetting("StorageConnectionString");

                // Parse the connection string and return a reference to the storage account.
                CloudStorageAccount storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString"));

                // Create the table client.
                CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

                // Retrieve a reference to the table.
                CloudTable table = tableClient.GetTableReference("UnansweredChatBot");

                // Create the table if it doesn't exist.
                table.CreateIfNotExists();

                // Create a new customer entity.
                CustomerEntity customer1 = new CustomerEntity("NoSolution", "Smith");
                customer1.Query = firstmessage;

                // Create the TableOperation object that inserts the customer entity.
                TableOperation insertOperation = TableOperation.Insert(customer1);

                // Execute the insert operation.
                table.Execute(insertOperation);
            }

            //extract other data from "activity" object

            //your code logic here
            //store data in your table storage

            //Note: specifcial scenario of user send attachment
        }

public class CustomerEntity : TableEntity
{
    public CustomerEntity(string lastName, string firstName)
    {
        this.PartitionKey = lastName;
        this.RowKey = firstName;
    }

public CustomerEntity() { } // the parameter-less constructor must be provided

public string Query { get; set; }
}

任何对此问题的见解帮助将不胜感激!

在您的客户实体 class 中,您正在调用 Constructor

public CustomerEntity(string lastName, string firstName)
{ 
    this.PartitionKey = lastName;
    this.RowKey = firstName;
}

因此,当您初始化一个新对象时,您会传递构造函数中定义的两个参数,firstnamelastname

这些由构造函数按名称设置,在其上下文之外(即在 table 存储中)没有任何意义。

CustomerEntity customer1 = new CustomerEntity("NoSolution", "Smith");

在您的代码中,您需要做的就是将构造函数更改为

public CustomerEntity(string requesterName, string uniqueRowKey)
{ 
    this.PartitionKey = requesterName ;
    this.RowKey = uniqueRowKey;
}

您的 RowKey 必须是唯一的,您的分区键用于通过对类似类型的行进行分组来简化搜索。然后你可以像这样传递给你的构造函数:

string rowKey = Guid.NewGuid().ToString("N"); //This give you a unique guid with no hyphens.
CustomerEntity customer1 = new CustomerEntity("John Smith", rowKey);

这将插入您的实体,分别设置为分区键和行键。

这就是您要找的那种东西吗?