Add a single Expression to the where clause returning the query. List newOrders = DB.find(Order.class) .where().eq("status", Order.NEW) .findList(); ...
(Expression expression)
| 326 | * }</pre> |
| 327 | */ |
| 328 | Query<T> where(Expression expression); |
| 329 | |
| 330 | /** |
| 331 | * Add Expressions to the where clause with the ability to chain on the |
no outgoing calls