greater

infix fun <T> Property<T>.greater(value: Int): PropertyQueryCondition<T>

Creates a "greater than ('>')" condition for this property.


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

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


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

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