1
在Xamarin IOS溶液中,SQLite數據庫路徑的標準編碼是:如果從頭創建數據庫Xamarin IOS - 如何包括現有SQLite數據庫文件到溶液
var sqliteFilename = "MyDatabase.db3";
string libraryPath = Path.Combine (documentsPath, "..", "Library"); // Library folder instead
var path = Path.Combine (libraryPath, sqliteFilename);
上面的代碼是好的。 但我的問題是如何將現有的sqlite數據庫包含到解決方案中,因此可以將其複製到「庫」文件夾中?