Which is equivalent
App.Person.filter(function(e){return e.get('age') == 30})
to the new Ember data ?
In the old Ember data, App.Model.filter created a different type of object compared to App.Model.find ( see this question ). I found a difference in types, because if I wanted to record and make changes, I had to use filter . So, find was kind of read-only. (Correct me if I am wrong.)
Is this in the case of new Ember data?
Haoqi li
source share