Packages

object Case

Case provides a DSL for conditional statements in the query language. An arbitrary number of If...Then expressions can be chained, optionally followed by Else, e.g.:

Case If u.id < 3 Then "low" If u.id < 6 Then "medium" Else "high"

All result expressions have to be of compatible type (modulo nullability). If at least one of them is an Option type or the Else branch is missing, the result is also an Option.

Source
Case.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Case
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final class TypedCase[B, T] extends TypedRep[Option[B]]
  2. final class TypedWhen[B, T] extends AnyRef
  3. final class UntypedWhen extends AnyRef

Value Members

  1. def If[C <: Rep[_]](cond: C)(implicit arg0: CanBeQueryCondition[C]): UntypedWhen