less

infix fun <T> Property<T>.less(value: Short): PropertyQueryCondition<T>
infix fun <T> Property<T>.less(value: Int): PropertyQueryCondition<T>
infix fun <T> Property<T>.less(value: Long): PropertyQueryCondition<T>
infix fun <T> Property<T>.less(value: Double): PropertyQueryCondition<T>
infix fun <T> Property<T>.less(value: Date): PropertyQueryCondition<T>
infix fun <T> Property<T>.less(value: String): PropertyQueryCondition<T>
infix fun <T> Property<T>.less(value: ByteArray): PropertyQueryCondition<T>

Creates a "less than ('<')" condition for this property.


inline fun <T> QueryBuilder<T>.less(property: Property<T>, value: Short): QueryBuilder<T>
inline fun <T> QueryBuilder<T>.less(property: Property<T>, value: Int): QueryBuilder<T>

Shortcut for less(property, value.toLong())


inline fun <T> QueryBuilder<T>.less(property: Property<T>, value: Float): QueryBuilder<T>

Shortcut for less(property, value.toDouble())