Friday 15 June 2012

sqlite - Azure Mobile Services Android Offline Example - "createdAt","updatedAt" columns empty -



sqlite - Azure Mobile Services Android Offline Example - "createdAt","updatedAt" columns empty -

i have added in todoitem table of local db of mobile device columns "createdat" , "updatedat", because exist in azure database todoitem table. columns never updated in localstorage table although refresh list (the other table columns updated normally). why happen? illustration followed here: http://azure.microsoft.com/blog/2014/08/07/offline-support-in-azure-mobile-services-android-sdk/

thank you

without having seen of code assume haven't decorated createdat , updatedat properties corresponding annotations. create sure properties , should work:

[microsoft.windowsazure.mobileservices.createdat] public datetimeoffset? createdat { get; set; } [microsoft.windowsazure.mobileservices.updatedat] public datetimeoffset? updatedat { get; set; }

ps. don't have add together these columns of aren't using them.

android sqlite azure

No comments:

Post a Comment