Referencing parent in child controller

If you have a parent ArrayController that renders a child through an {{outlet}}, can you not reference the parent inside the child by "parentView"?

I don’t want to ask the store for this property. My ArrayController already has it I just want it passed into the child.

You may be able to use "parentController", however the standard way to get at the parent route’s model is to use modelFor in the child route.