AppDatabase db = AppDatabase db = Room.databaseBuilder(context, AppDatabase.class, "products") .allowMainThreadQueries() .fallbackToDestructiveMigration().build(); List myProducts = db.productDao().getAll();