Store user data in Windows 8 metro app

前端 未结 4 957
醉梦人生
醉梦人生 2021-02-19 18:28

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 d

4条回答
  •  隐瞒了意图╮
    2021-02-19 18:57

    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:

    • How to store and retrieve local application data
    • ApplicationData sample

    That question is also debated here and here

提交回复
热议问题