I want to order the OneToMany association in essence with a slight caveat that the specific property that I would like to order is not part of this object, but rather a property of what it is associated with.
Sorry for the confusing start, try to clarify the situation with the example. I would like to be able to do something similar to:
class download
{
protected $files = null;
}
Where a downloadhas a lot filesand everyone filehas onemime_type
I'm finishing now ORMException: Unrecognized field: mime_type
Is this possible, or am I just asking too much?
source
share