between
inline fun <T> QueryBuilder<T>.between(property: Property<T>, value1: Short, value2: Short): QueryBuilder<T>
Content copied to clipboard
inline fun <T> QueryBuilder<T>.between(property: Property<T>, value1: Int, value2: Int): QueryBuilder<T>
Content copied to clipboard
Shortcut for between(property, value1.toLong(), value2.toLong())
inline fun <T> QueryBuilder<T>.between(property: Property<T>, value1: Float, value2: Float): QueryBuilder<T>
Content copied to clipboard
Shortcut for between(property, value1.toDouble(), value2.toDouble())