我已经在Windows Phone 7中创建了数据库,它很适合我
重建应用程序后,它说
找不到数据库文件。检查数据库的路径。 [数据源= \ Applications \ Data \ 6157CB94-31D3-4E6F-BFC3-78BE1549C10A \ Data \ IsolatedStore \ amit.sdf]
我的db string代码是
` private const string Con_String = @"isostore:/amit.sdf";`
如何解决这个问题给我任何解决这个问题的建议
答案 0 :(得分:3)
您是否检查了此示例How to create a basic local database app for Windows Phone?
他们使用此路径创建数据库
//Specify the connection string as a static, used in main page and app.xaml.
public static string DBConnectionString = "Data Source=isostore:/ToDo.sdf";
并且也不要忘记检查数据库是否存在
//Create the database if it does not exist.
using (ToDoDataContext db = new ToDoDataContext(ToDoDataContext.DBConnectionString))
{
if (db.DatabaseExists() == false)
{
//Create the database
db.CreateDatabase();
}
}