less
infix fun <T> Property<T>.less(value: ByteArray): PropertyQueryCondition<T>
Content copied to clipboard
Creates a "less than ('<')" condition for this property.
inline fun <T> QueryBuilder<T>.less(property: Property<T>, value: Short): QueryBuilder<T>
Content copied to clipboard
inline fun <T> QueryBuilder<T>.less(property: Property<T>, value: Int): QueryBuilder<T>
Content copied to clipboard
Shortcut for less(property, value.toLong())
inline fun <T> QueryBuilder<T>.less(property: Property<T>, value: Float): QueryBuilder<T>
Content copied to clipboard
Shortcut for less(property, value.toDouble())