I am learning how to develop Windows 8 Metro style apps but i couldn't found a way to store user data in SQL Server for example.

What could i use or how to store user data.

link|improve this question

0% accept rate
1  
As of now, you are expected to store data in the cloud. This may well change at launch time, hard to predict. – Hans Passant Jan 22 at 18:30
which cloud should i use – Михаил Петров Jan 22 at 19:16
feedback

2 Answers

You cannot access local "desktop services" from the Metro app. So you will not be able to communicate with a local SQL Server. You can use online services that store your information or you can use local storage.

Take a look at:

That question is also debated here and here

link|improve this answer
feedback

There are couple of ways of storing data - Roaming Settings (if you want the same data to be available across all the win8 devices he has installed your application), Application Settings in Isolated Storage. About storing data in SQL server, as you cannot deploy sql database with Metro app, you need to have a client-server arch to host your service in front of a sql server db.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.