In Azure Table, can I use the IF-Match tag when Merging to conditionally update a value on something other than ETAG?

Specifically, suppose I have an object like this

public class Person : TableServiceEntity
{
public string Name {get;set;}
public string Age {get;set}

public DateTime LockDate {get;set;}

}

Suppose I want to merge or update the object conditionally on the presence or comparison of the "lock date" value. Is this possible in Azure?

有帮助吗?

解决方案

No.

(Adding more characters here to pass Stack Overflow's minimum character requirement.)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top