我正在尝试为WinPhone 8.1配置SQLite.NET PCL但是在我尝试访问数据时它一直在崩溃。(在构建过程中没有任何错误)
在调试模式期间崩溃之前它停止并带我到这个:
if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
};
我的代码:
var sqliteFilename = "XamarinWMS.db3";
string path = Path.Combine(ApplicationData.Current.LocalFolder.Path, sqliteFilename);
var platform = new SQLite.Net.Platform.WinRT.SQLitePlatformWinRT();
var conn = new SQLite.Net.SQLiteConnection(platform, path);
return conn;
任何想法我做错了什么?
提前致谢!