I\'ve been struggling for the past few days with primary keys and the last version of Ember Data.
I first read how to do it on the
Try to extend your adapter like this:
App.RESTSerializer = DS.RESTSerializer.extend({ init: function() { this._super(); this.map('App.MyModel', { primaryKey: "_id" }); } });