由于以下警告(从旧版本迁移到最新的Azure SDK),我正在将Azure代码从使用TableServiceContext迁移到CloudTable
' Microsoft.WindowsAzure.Storage.Table.DataServices.TableServiceEntity'已过时:'通过WCF数据服务访问Windows Azure表的支持现已过时。建议您使用Microsoft.WindowsAzure.Storage.Table命名空间来处理表。'
其中一个问题是在TableServiceContext中我使用了以下
_tableServiceContext.MergeOption = MergeOption.NoTracking;
_tableServiceContext.SaveChangesDefaultOptions = SaveChangesOptions.ReplaceOnUpdate;
_tableServiceContext.IgnoreResourceNotFoundException = true;
_tableServiceContext.Format.UseAtom();
_tableServiceContext.WritingEntity += JobRepository_WritingEntity;
新SDK中的等价物是什么?
答案 0 :(得分:1)
这些属性特定于ServiceContext的行为,不适用于使用CloudTable类。