eq

infix fun <T : Any, V> JsonPathBuilder<T>.eq(value: V?): Eq<T, V>(source)

Equivalent to = in SQL


infix inline fun <T : Any, V, VALUE> KProperty1<T, V>.eq(value: VALUE?): Eq<T, VALUE>(source)

Equivalent to = in SQL.

Note: enum values bind by their Kotlin constant name, not @SerialName. For a constant annotated with @SerialName, pass the serial-name string instead (e.g. eq "active") — the typed enum form would silently not match. See the Querying guide and #11.


infix fun <T : Any, V> CaseWhen<T>.eq(value: V?): Where<T>(source)