Nope.
Thank you anyway Patrick.
My problem for example, how can I get the following order?
35
47
98
102
210
from
102
35
98
210
47
with QQ::OrderBy() because QQ::OrderBy accept only QQNode as parameter, and QueryBuilder generated SQL contains " ORDER BY `t0`.`field` " but what I need is: " ORDER BY `t0`.`field`+0 “
How to tell QQ::OrderBy to add '+0' to field name.
Edit: My filed type is varchar.
Attila