I have a model Teacher which has many Students. The models are defined as follows:
App.Teacher = DS.Model.extend({ email: DS.attr(\'string\'), students: DS.h
Ok, I found the answer. I had to add a property async: true to the students association in the model for Teacher:
async: true
students
Teacher
App.Teacher = DS.Model.extend({ email: DS.attr('string'), students: DS.hasMany('student', { async: true }) });