isDistinctFrom

@JvmName(name = "isDistinctFromEntityID")
open infix fun <T : Comparable<T>> Column<EntityID<T>>.isDistinctFrom(t: T): IsDistinctFromOp

Checks if this expression is not equal to some t value, with null treated as a comparable value


open infix fun <T : Comparable<T>, S : T?> Expression<in S>.isDistinctFrom(other: Expression<in S>): IsDistinctFromOp

Checks if this expression is not equal to some other expression, with null treated as a comparable value


Checks if this EntityID expression is not equal to some other expression


Checks if this expression is not equal to some other expression.