0

我试图为 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;

任何想法我做错了什么?

提前致谢!

4

0 回答 0