mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1945 - ENH: Add query.orderById(boolean) to ExpressionList ... improve fluid style
This commit is contained in:
@@ -813,6 +813,11 @@ class JunctionExpression<T> implements SpiJunction<T>, SpiExpression, Expression
|
||||
return exprList.orderBy(orderBy);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Query<T> orderById(boolean orderById) {
|
||||
return exprList.orderById(orderById);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Query<T> query() {
|
||||
return exprList.query();
|
||||
|
||||
Reference in New Issue
Block a user