How To Get System Properties __createdat, __version In Javascript Backend Of Azure Mobile Services?
I am trying to explicitly get the system properties from my table but it is not working. I can see that the URL is returning all the data including these fields if I use https://my
Solution 1:
I was trying to access the system properties from within the API scripts and found this and thought it was useful and relevant: http://www.brandonmartinez.com/2014/10/22/retrieve-system-properties-in-azure-mobile-services-javascript-backend/
Basically you can do this (example from the post):
myTable.read({
systemProperties: ['__createdAt', '__updatedAt'],
success: function(tableEntries) {
// So on and so forth
}
}
Post a Comment for "How To Get System Properties __createdat, __version In Javascript Backend Of Azure Mobile Services?"