further interchangability for class properties in clause elements

Issue #675 resolved
jek created an issue
>>> print desc(Customer.c.name)
customers.name DESC
>>> print desc(Customer.name)
customers.name DESC

but

>>> print func.max(Customer.c.name)
max(customers.name)
>>> print func.max(Customer.name)
max(:max)

Comments (2)

  1. Log in to comment