标签: sqlite xamarin xamarin.forms
我有Xamarin Forms解决方案,在App.xaml.cs中我想从数据库(SQLite)读取。在方法OnStart()中,如果我尝试创建表(如果它不存在):
await connection.CreateTableAsync<User>();
异常被抛出。我无法通过try / catch捕获此异常。
是否可以从App.xaml.cs访问数据库?