Would be great if we can specify a subclass of resultSet Simple for some models.
of course it can be done with afterFetch etc, but this method is becoming the center of my models now, it is responsible of almost everything and I would like a way to delegate responsabilities like this one.
So, an especial method to define the subclass of ResultSets Simple returned will be great. This way we can implement custom logic to the ResultSets Simple.
The final result would be:
$resultSetCustomized = ModelObject::find();
// ResultSetCustomized becomes a custom resultSet class, example: MyOwnResultSet extends Simple;