SubQueryExpr

easysql.dsl.SubQueryExpr
case class SubQueryExpr[T <: SqlDataType](query: Query[(T), _]) extends Expr[T]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Expr[T]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def <(q: Query[(T), _]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <(expr: Expr[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <(value: T): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <=(q: Query[(T), _]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <=(expr: Expr[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <=(value: T): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <>(q: Query[(T), _]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <>(expr: Expr[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <>(value: Option[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def <>(value: T): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def ===(q: Query[(T), _]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def ===(expr: Expr[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def ===(value: Option[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def ===(value: T): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def >(q: Query[(T), _]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def >(expr: Expr[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def >(value: T): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def >=(q: Query[(T), _]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def >=(expr: Expr[T]): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
def >=(value: T): BinaryExpr[Boolean]

Attributes

Inherited from:
Expr
infix def as(name: String)(using name.type != "" =:= true): AliasExpr[T, String]

Attributes

Inherited from:
Expr
def asc: OrderBy

Attributes

Inherited from:
Expr
def between(start: Expr[T], end: Expr[T]): Expr[Boolean]

Attributes

Inherited from:
Expr
def between(start: T, end: T): Expr[Boolean]

Attributes

Inherited from:
Expr
def desc: OrderBy

Attributes

Inherited from:
Expr
def in(subQuery: Query[(T), _]): Expr[Boolean]

Attributes

Inherited from:
Expr
def in(list: T | Expr[T]*): Expr[Boolean]

Attributes

Inherited from:
Expr
def in(list: List[T | Expr[T]]): Expr[Boolean]

Attributes

Inherited from:
Expr
def notBetween(start: Expr[T], end: Expr[T]): Expr[Boolean]

Attributes

Inherited from:
Expr
def notBetween(start: T, end: T): Expr[Boolean]

Attributes

Inherited from:
Expr
def notIn(subQuery: Query[(T), _]): Expr[Boolean]

Attributes

Inherited from:
Expr
def notIn(list: T | Expr[T]*): Expr[Boolean]

Attributes

Inherited from:
Expr
def notIn(list: List[T | Expr[T]]): Expr[Boolean]

Attributes

Inherited from:
Expr
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def unsafeAs(name: String): AliasExpr[T, String]

Attributes

Inherited from:
Expr