作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
使用 Azure 表,如果我知道实体的 RowKey 和 PartitionKey(以便我可以检索该实体),如何编辑该实体的特定属性值?
这听起来像是一个非常标准的操作,但正常的做法是这样的:
public void UpdateEntity(ITableEntity entity)
{
TableOperation replaceOperation = TableOperation.Replace(entity);
table.Execute(replaceOperation);
}
即给出整个 C# TableEntity 对象作为替换,而不是单个属性名称/值对。
我想要更多类似的东西:
public void UpdateEntityProperty<T>(string partitionKey, string rowKey,
string propertyName, T newPropertyValue)
{
TableOperation retrieveOperation = TableOperation.Retrieve(partitionKey, rowKey);
TableResult retrievedResult = table.Execute(retrieveOperation);
TableEntity entity = (TableEntity)retrievedResult.Result;
// This line, of course, doesn't compile. But you get the idea.
entity.SetPropertyValue(propertyName, newPropertyValue);
TableOperation replaceOperation = TableOperation.Replace(entity);
table.Execute(replaceOperation);
}
我的理解是,在幕后,行存储为与该行上的属性相对应的一组键值对,因此更新属性的值应该很容易,而无需定义从 TableEntity 派生的整个 C# 类这样做。
我该怎么做?
最佳答案
为了完整起见,以下是我最终使用的内容,灵感来自 Gaurav Mantri 的答案:
public void UpdateEntityProperty(string partitionKey, string rowKey,
string propertyName, string newPropertyValue)
{
var entity = new DynamicTableEntity(partitionKey, rowKey);
var properties = new Dictionary<string, EntityProperty>();
properties.Add(propertyName, new EntityProperty(newPropertyValue));
var mergeOperation = TableOperation.Merge(entity);
table.Execute(mergeOperation);
}
关于c# - 给定 PartitionKey、RowKey、属性名称和值,如何更新该实体的属性值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14732429/
我是一名优秀的程序员,十分优秀!