在 Azure 表中,我可以在合并时使用 IF-Match 标记有条件地更新 ETAG 以外的值吗?
具体来说,假设我有一个像这样的对象
public class Person : TableServiceEntity
{
public string Name {get;set;}
public string Age {get;set}
public DateTime LockDate {get;set;}
}
假设我想根据“锁定日期”值的存在或比较有条件地合并或更新对象。这在 Azure 中可行吗?