0

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?

makerofthings7
  • 60,103
  • 53
  • 215
  • 448

1 Answers1

2

No.

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

user94559
  • 59,196
  • 6
  • 103
  • 103
  • A better question is, how to I extract an ETAG from a record so I can use it again when I update it using a different DataContext. – makerofthings7 Oct 06 '12 at 17:18
  • I asked this very question 2+ years ago and never received a response from anyone. Any tips are appreciated: http://stackoverflow.com/q/3746108/328397 – makerofthings7 Oct 06 '12 at 17:21