I am trying to select data from the table by id . But I get the error:
java.lang.IllegalStateException: Illegal State: Object is no longer valid to operate on. Was it deleted by another thread?
Here is the database request code
RealmQuery<Exercise> query = realm.where(Exercise.class); for(Day d : dayList) { RealmResults<Exercise> results = query.equalTo("exercise_id", d.getExercise_id()).findAllAsync(); exercises.addAll(results); }