Merge pull request #3284 from raphaelNguyen/master

Expose betweenProperties on query bean
This commit is contained in:
Rob Bygrave
2023-12-05 23:21:26 +13:00
committed by GitHub
@@ -304,6 +304,14 @@ public abstract class PBaseComparable<R, T> extends PBaseValueEqual<R, T> {
return _root;
}
/**
* Between - value between this property and another property
*/
public final R betweenProperties(Query.Property<T> highProperty, T value) {
expr().betweenProperties(_name, highProperty.toString(), value);
return _root;
}
/**
* Greater than.
*