문제

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