mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
new comparison method Ine (caseInsensitive notEquals) (#1551)
This commit is contained in:
committed by
Rob Bygrave
parent
7be4675d3e
commit
4fe2016891
@@ -616,6 +616,11 @@ class JunctionExpression<T> implements SpiJunction<T>, SpiExpression, Expression
|
||||
return exprList.ieq(propertyName, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ExpressionList<T> ine(String propertyName, String value) {
|
||||
return exprList.ine(propertyName, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ExpressionList<T> iexampleLike(Object example) {
|
||||
return exprList.iexampleLike(example);
|
||||
|
||||
Reference in New Issue
Block a user