Question

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?

Était-ce utile?

La solution

No.

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top