Hãy thử sử dụng ExpressionList
. Đây là mẫu nếu các điều kiện trong câu lệnh if statement
đáp ứng, thì biểu thức sẽ được đưa vào mệnh đề where.
public static List<User> filterUsers(int user_no, String genre, String name){
com.avaje.ebean.ExpressionList expressionList = find.where().eq("user_no", user_no);
if(condition1)
expressionList.eq("genre", genre);
if(condition2)
expressionList.eq("name", name);
return expressionList.findList();
}