Like

data class Like<T : Any>(builder: JsonPathBuilder<T>, value: String?) : Where<T> (source)

Equivalent to LIKE in SQL

Constructors

Link copied to clipboard
constructor(builder: JsonPathBuilder<T>, value: String?)

Functions

Link copied to clipboard
infix fun <T : Any> Where<T>.and(other: Where<T>): Where<T>

Equivalent to AND in SQL

Link copied to clipboard
infix fun <T : Any> Where<T>.or(other: Where<T>): Where<T>

Equivalent to OR in SQL

Link copied to clipboard
open override fun toSqlQuery(increment: Int): SqlQuery