1
我使用Xamarin Forms開發應用程序並使用SQlite存儲用戶詳細信息。剛開始使用Windows(Windows 10)。 SQLite是否支持UWP,我提到了一些網站,並說它支持。但是當我嘗試時,連接始終爲空。SQLite支持通用Windows應用程序
我使用的代碼:
public SQLite.Net.SQLiteConnection GetConnection()
{
var sqliteFilename = "Sample.db3";
string path = Path.Combin(ApplicationData.Current.LocalFolder.Path, sqliteFilename);
if (!File.Exists(path))
{
File.Create(path + sqliteFilename);
}
var plat = new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT();
var conn = new SQLite.Net.SQLiteConnection(plat,path);
return conn;
}
}
任何幫助或建議將不勝感激。
注:我已經安裝了SQLite.Net-PCL並加入參考SQLite的通用應用平臺
您是否按照Windows的這些說明進行操作? https://developer.xamarin.com/guides/xamarin-forms/working-with/databases/#Adding_SQLite_to_WinPhone – Jason
是的,我確實按照說明 – Sudha
你也見過http://ef.readthedocs.org/en/latest/工具入門/ uwp.html? –