public EveryCentDatabase(ILocalPath databasePath) { try { var pathToDatabase = databasePath.GetLocalFilePath("everycent.db3"); _connection = new SQLiteAsyncConnection(pathToDatabase, false); _connection.CreateTableAsync <Movement>().Wait(); } catch (Exception) { } }