我有一个包含一些数据的Azure表存储。我需要为表中的所有记录更新一个属性。我知道每个项目的分区键和行键。但是可能是这样,我的CSV文件中有新项目。

我需要做的是:


如果在基于ParitionKey和RowKey的表存储中找到一项,我想更新一个属性:名称。
如果在表中找不到项目,则必须将其插入,但是我需要填写其他属性:姓名,电子邮件地址,地址


我正在尝试使用InsertOrMerge,但遇到了Etag异常,如果找不到该项目并且需要插入,如何设置更多属性?

        CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString);

        CloudTableClient cloudTableClient = storageAccount.CreateCloudTableClient();

        CloudTable ct = cloudTableClient.GetTableReference("mytable");



             var item = new Item()
             {
                 PartitionKey = "PARTITIONID",
                 RowKey = "ROWID",
                 Name = "DEMO",
             };

        TableOperation to = TableOperation.Merge(code);

        var result = await ct.ExecuteAsync(to);

最佳答案

当我使用Merge操作表中不存在的实体时,我也遇到了etag异常。

System.ArgumentException: 'Merge requires an ETag (which may be the '*' wildcard).'

您的要求可以通过RetrieveInsertOrMerge来实现。

将两个属性EmailAddress添加到Item类。

 public class Item: TableEntity
 {
    public Item(String PartitionKey, String RowKey, String Name, String Email=null, String Address=null)
    {
        this.RowKey = RowKey ;
        this.PartitionKey = PartitionKey;
        this.Name = Name;
        this.Email = Email;
        this.Address = Address;
    }

    public Item(){}

    public String Name { get; set; }

    public String Email { get; set; }

    public String Address { get; set; }

}


添加if开关以告知要加载的属性。

 TableOperation to = TableOperation.Retrieve<Item>("PK","RK");

 TableResult tr = table.ExecuteAync(to).Result;

 var item;

 if (tr != null)
 {
     item = new Item
     {
         PartitionKey = "PARTITIONID",
         RowKey = "ROWID",
         Name = "DEMO",
     }
 }
 else
 {
     item = new Item
     {
         PartitionKey = "PARTITIONID",
         RowKey = "ROWID",
         Name = "DEMO",
         Email = "[email protected]",
         Address = "Britain"
     }
 }

 to = TableOperation.InsertOrMerge(item);

 tr = await ct.ExecuteAysnc(to).Result;


。当您执行InsertOrMerge时,


如果该项目存在,则其内容(名称)将由您的新项目更新。
如果不存在,它将按预期插入。

08-04 09:25