如何将以下Orderby
sql语句翻译为
ORDER BY Country ASC,CustomerID DESC;
我已设法写Ordering.property("Country").ascending();
但不确定如何添加下一个条件。
由于
答案 0 :(得分:1)
如果查看orderBy
方法,您会看到它具有以下签名
public OrderBy orderBy(Ordering... orderings)
请注意,您可以在其中放置多个Ordering
个对象。