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?