| Issue 43: | AbstractClause is not public |
‹ Prev
42 of 42
|
| 1 person starred this issue and may be notified of changes. | Back to list |
Hello,
We'd like to use have AbstractClause available in our code.
We'd like to do the following:
(with a static import of LiquidForm)
A p = alias(A.class, "p");
AbstractClause query = select(p).from(A.class);
if(activeOnly) {
query = query.where(eq(p.getActive(), Boolean.TRUE);
}
// execute query
Without a public AbstractClause, this is impossible :(
|