not Equal
infix fun <T> Property<T>.notEqual(value: Boolean): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.notEqual(value: Short): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.notEqual(value: Int): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.notEqual(value: Long): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.notEqual(value: Date): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.notEqual(value: String): PropertyQueryCondition<T>
Content copied to clipboard
Creates a "not equal ('<>')" condition for this property.
inline fun <T> QueryBuilder<T>.notEqual(property: Property<T>, value: Short): QueryBuilder<T>
Content copied to clipboard
inline fun <T> QueryBuilder<T>.notEqual(property: Property<T>, value: Int): QueryBuilder<T>
Content copied to clipboard
Shortcut for notEqual(property, value.toLong())