Ticket #100 (new defect)

Opened 4 years ago

Last modified 4 years ago

Order by doesn't work with a column defined in a parent class

Reported by: ged Owned by:
Priority: minor Milestone:
Component: core Version: 0.7.0
Keywords: Cc:

Description


class A(Entity):
    using_options(inheritance='multi')
    name = Field(String(32))

class B(A):
    using_options(inheritance='multi', order_by='name')
    extra = Field(String(32))

Not sure SA supports this though...

Change History

Changed 4 years ago by ged

Note that it does work when using single-table inheritance...

Note: See TracTickets for help on using tickets.