I really like the promise of Ember Data, and am wondering if there is an idiomatic way to accomplish the same thing in AngularJS. It seems like there isn't, that you have to manage your models manually as opposed to something like this, from http://emberjs.com/guides/models/ .
App.Order = DS.Model.extend({
lineItems: DS.hasMany('lineItem')
});
App.LineItem = DS.Model.extend({
order: DS.belongsTo('order')
});
I read this, but it doesn't seem to get at exactly what I'm trying to figure out.