我已经在移动设备的本地数据库的ToDoItem表中添加了列" createdAt"和" updatedAt",因为它们也存在于Azure数据库ToDoItem表中。尽管我刷新了列表(其他表列正常更新),但这些列永远不会在localstorage表中更新。 为什么会这样? 我遵循的例子是:http://azure.microsoft.com/blog/2014/08/07/offline-support-in-azure-mobile-services-android-sdk/
谢谢
答案 0 :(得分:-1)
如果没有看到任何代码,我假设您没有使用相应的注释修饰CreatedAt和UpdatedAt属性。确保您的属性看起来像这样,它应该工作:
[Microsoft.WindowsAzure.MobileServices.CreatedAt]
public DateTimeOffset? CreatedAt { get; set; }
[Microsoft.WindowsAzure.MobileServices.UpdatedAt]
public DateTimeOffset? UpdatedAt { get; set; }
聚苯乙烯。你不必使用它们来添加这些列。