Let's say I have some model like:
App.Employee = DS.Model.extend({
name: DS.attr('string'),
department: DS.belongsTo('App.Department')
});
In my controller I can say
var name = thisEmployee.get('name');
But I can't say
var department = thisEmployee.get('department');
So my question is how to get a reference to the object on the other side of the relationship.