Expose betweenProperties on query bean

This commit is contained in:
Raphael Nguyen
2023-12-05 15:08:16 +11:00
parent 03cd4000f0
commit 6b7efe65d7
@@ -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.
*