I have update Ember-data to 1.0.0-beta.19 and now store.find('events')
resolved promise returns DS.INTERNALMODEL
instances, instead of DS.MODEL
. With Ember-data 1.0.0-beta.18 it was working fine. Any ideas?
UPDATE
At the end i found out that somewhere in my app code i was using Ember-data internal code like store.find('events.content')
, causing an exception. The debugger was not so helpful tracing it, but removing this fixed my issue.