What\'s the equivalent of
App.Person.find({age: 30})
in the new Ember Data?
I.e. how do I get an record array based on an attribute?
The equivalent method in ember data 1.0.0 beta2 is now:
this.store.find('person', {age: 30})
More info on all the changes can be found here.
Hope it helps.