0

我正在为 WP8 使用 VS2012 SDK。我需要知道是否可以为移动设备创建一个本地数据库,作为单独的 c# 类,而不是在 MainPage 类下。如果是的话,是否应该添加任何特别的东西来使它工作?

谢谢你们。

4

1 回答 1

1

You can use a local relational database in the form of an .SDF file, that is stored in your app's local folder. This can then be accessed through LINQ-to-SQL.

I suggest you read into this, Local database for Windows Phone.

于 2013-09-26T07:37:49.493 回答