适用于Windows Phone 7的数据库

时间:2010-06-30 07:04:54

标签: linq windows-phone-7 sqlite

我希望为Windows Phone 7发布一个非常简单的应用程序。不幸的是,My Apps需要在设备中存储一些数据。说一个数据库。

我的同事发现了一个SQLite库 - http://sviluppomobile.blogspot.com/2010/03/sqlite-for-wp-7-series-proof-of-concept.html

但是对于Windows Phone 7,Linq to SQL或EF怎么样呢?

4 个答案:

答案 0 :(得分:2)

在Windows Phone 7的初始版本中,您没有SQL Server Compact或类似版本。因为没有用户应用程序可以调用P / Invoke,所以没有其他移动/压缩数据库可以工作。

要存储内容,您必须使用独立存储并使用此构建内容。请参阅:http://winphone7db.codeplex.com/

答案 1 :(得分:1)

Windows 7下的Perst works well

答案 2 :(得分:1)

SQLite对我来说很好。复杂连接速度较慢,但​​我敢打赌,对于任何数据库都是如此。如果您想知道,我有超过50MB的数据。

答案 3 :(得分:0)

您可以尝试使用SQL Server Compact

有关compact and linq

的信息