如何以编程方式知道Azure存储表是否已更改?

时间:2013-02-19 17:41:45

标签: azure storage

我想知道是否有任何方式以编程方式知道Azure表存储中的表是否已更改,然后表中的更改是什么?

1 个答案:

答案 0 :(得分:2)

不,不是真的。您唯一的选择是遍历表中的所有记录,并根据Timestamp属性(even though the official documentation advises you not to read the Timestamp property)查看记录是否已更改。

或者让您的代码在每次添加/更新/删除实体时执行跟踪,方法是将其写入另一个表(审计表)。