0
預定義數據庫(.db)應該添加以及如何在Windows Phone 8.1應用程序中使用它? 我沒有在我的應用程序中使用Silverlight。 我試圖做這樣的事情Windows Phone 8.1應用程序中預定義的數據庫
public MainPage()
{
this.InitializeComponent();
this.NavigationCacheMode = NavigationCacheMode.Required;
CopyDatabase();
}
private void CopyDatabase()
{
IsolatedStorageFile ISF = IsolatedStorageFile.GetUserStoreForApplication();
String DBFile = "myDB.sqlite";
if (!ISF.FileExists(DBFile)) CopyFromContentToStorage(ISF, "Assets/myDB.sqlite", DBFile);
}
這表明該命名空間名稱IsolatedStorageFile找不到。 我在Windows-phone-8.0的示例數據庫應用程序中發現了這些代碼,我試圖在Windows-phone-8.1(不使用Silverlight)中做同樣的事情。