final class FromAliasing[A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FromAliasing
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- def as[U <: String with Singleton](name: U)(implicit A: scalaql.Tag[A], U: scalaql.Tag[U]): From[as[A, U]]
Allows to alias
thisquery input values, so that it could be provided to an aliased query.Allows to alias
thisquery input values, so that it could be provided to an aliased query.Example:
val peers: Query[From[Person as "people1"] with From[Person as "people2"]] = ??? val actualResult = peers.toList.run( from(people1).as("people1") & from(people2).as("people2") )
- U
singleton type of the alias
- name
the alias (only it's singleton type is used)
- returns
thisquery input aliased
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any