I am writing a windows phone 8 app that will consume data from the northwind database from an odata source, add the data to a local sql server database (offline storage), make changes to the data and send them back up to the remote database when back online.
The bit im stuck on is the parsing of the odata data and writing it to the local database.
I can consume data using the following code: http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286405(v=vs.105).aspx
I can create a local database and make modifications to the rows using: http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286405(v=vs.105).aspx
But i cant for the life of me put the odata into the local database. Any help greatfully recieved.