ldbc.statement.Where
See theWhere companion object
Trait for building Statements to be WHERE.
Type parameters
- A
-
The type of Table. in the case of Join, it is a Tuple of type Table.
Attributes
- Companion
- object
- Source
- Where.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
Members list
Type members
Types
type Self
Attributes
- Source
- Where.scala
Value members
Abstract methods
Trait for generating SQL table information.
Concrete methods
Attributes
- Source
- Where.scala
Function to set additional conditions on WHERE statement.
Function to set additional conditions on WHERE statement.
TableQuery[City]
.select(_.name)
.where(_.population > 1000000)
.and(_.name == "Tokyo")
Value parameters
- func
-
Function to construct an expression using the columns that Table has.
Attributes
- Source
- Where.scala
Function to set additional conditions on WHERE statement.
Function to set additional conditions on WHERE statement.
TableQuery[City]
.select(_.name)
.where(_.population > 1000000)
.or(_.name == "Tokyo")
Value parameters
- func
-
Function to construct an expression using the columns that Table has.
Attributes
- Source
- Where.scala
Function to set additional conditions on WHERE statement.
Function to set additional conditions on WHERE statement.
TableQuery[City]
.select(_.name)
.where(_.population > 1000000)
.xor(_.name == "Tokyo")
Value parameters
- func
-
Function to construct an expression using the columns that Table has.
Attributes
- Source
- Where.scala
Attributes
- Source
- Where.scala
In this article