Testa att använda ExpressionList
. Här är exemplet, om villkoren i if statement
uppfyllt, kommer uttrycket att inkluderas i where-satsen.
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();
}