我有一个包含一些数据的 Azure 表存储。我需要为表中的所有记录更新一个属性。我知道每个项目的分区键和行键。但是,可能是为了让我的 CSV 文件中有新项目。
我需要做的是:
- 如果在基于ParitionKey和RowKey的表存储中找到一个项目,我想更新一个属性:Name。
- 如果在表格中找不到项目,则必须插入它,但我有更多属性需要填写:姓名、电子邮件、地址
我正在尝试使用 InsertOrMerge,但我遇到了 Etag 异常,如果找不到该项目并且需要插入,如何设置更多属性?
var storageAccount = CloudStorageAccount.Parse(connectionString);
var cloudTableClient = storageAccount.CreateCloudTableClient();
var ct = cloudTableClient.GetTableReference("mytable");
var item = new Item()
{
PartitionKey = "PARTITIONID",
RowKey = "ROWID",
Name = "DEMO",
};
var to = TableOperation.Merge(code);
var result = await ct.ExecuteAsync(to);
当我使用Merge
操作表中不存在的实体时,我也遇到了 etag 异常。
System.ArgumentException: 'Merge requires an ETag (which may be the '*' wildcard).'
您的要求可以通过Retrieve
和InsertOrMerge
来实现。
将两个属性添加到Item
类Email
和Address
。
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 = "test@example.com",
Address = "Britain"
}
}
to = TableOperation.InsertOrMerge(item);
tr = await ct.ExecuteAysnc(to).Result;
.当您执行InsertOrMerge
时,
- 如果该项目存在,则其内容(名称(将由您的新项目更新。
- 如果不存在,它将按预期插入。