I am simply going to sort using the fields of a same table, so my
mapper is now:
-----------
mapper(ConstantType, constant_type_table,
order_by=constant_type_table.c.name
)
mapper(Constant, constant_table,
properties={'rel_constant_type': relation(ConstantType)},
order_by=[constant_table.c.type, constant_table.c.name]
)
-----------
I prefer don't use joints at possible -for greater performonce-.
On 26 mayo, 22:35, Jeff Putsch <jdpu...@gmail.com> wrote:
Kless: A summary of your final solution would be helpful to newbies
like me.