Spróbuj użyć ExpressionList
. Oto przykład, jeśli warunki w instrukcji if statement
spełnione, to wyrażenie zostanie uwzględnione w klauzuli 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();
}