sealed trait QueryResult[-In, +Out] extends Serializable
Represents the result of executing a query. It's the result type of the following methods:
1. Collecting query results into a list
val query: Query[From[Person], PeopleStatistics]] = ??? val result = query.toList
2. Printing query results into the console
val query: Query[From[Person], PeopleStatistics]] = ??? val result = query.show(truncate = false)
3. Creating predicates that could be used in other queries
def hasAdults(faculty: Faculty) = select[Student] .where(_.faculty == faculty.name) .exists(_.age >= 18) select[Faculty].whereSubQuery(hasAdults)
- In
input type
- Out
query result type
- Alphabetic
- By Inheritance
- QueryResult
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flatMap[In2 <: In, B](f: (Out) => QueryResult[In2, B]): QueryResult[In2, B]
Transforms this
QueryResult
by applying a function producing otherQueryResult
Transforms this
QueryResult
by applying a function producing otherQueryResult
Example:
val peopleQuery: Query[From[Person], Person] = ??? val companiesQuery: Query[From[Company], Company] = ??? val result = for { people <- peopleQuery.toList companies <- companiesQuery.toList } yield (people, companies)
- B
new query result type
- f
transformation function
- returns
transformed query result
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[B](f: (Out) => B): QueryResult[In, B]
Transforms this
QueryResult
by applying an arbitrary function.Transforms this
QueryResult
by applying an arbitrary function.Example:
val result = select[Person].toList val result2 = result.map(_.size)
- B
new query result type
- f
transformation function
- returns
transformed query result
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()