سؤال

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