trait ScalaqlSyntax extends ScalaqlAliases with ScalaqlDsl with OrderingSyntax with AliasingSyntax with EachSyntax with VersionSpecificImplicits
- Annotations
- @forbiddenInheritance()
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ScalaqlSyntax
- VersionSpecificImplicits
- EachSyntax
- AliasingSyntax
- OrderingSyntax
- ScalaqlDsl
- ScalaqlAliases
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final type Aggregate[-G, -A, +B] = (G, QueryExpressionBuilder[A]) => Of[A, B]
- Definition Classes
- ScalaqlAliases
- final type GroupBy[-A, +B] = (A) => B
- Definition Classes
- ScalaqlAliases
- final type OrderBy[-A, +B] = (A) => B
- Definition Classes
- ScalaqlAliases
- final type Predicate[-A] = (A) => Boolean
- Definition Classes
- ScalaqlAliases
- final type Tag[A] = izumi.reflect.Tag[A]
- Definition Classes
- ScalaqlAliases
- final type as[+T, U] = syntax.as[T, U]
- Definition Classes
- AliasingSyntax
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
- implicit final def BasicQuerySyntax[In, Out](self: Query[In, Out]): BasicQuerySyntax[In, Out]
- implicit final def DescribeSyntax[In, Out](self: Query[In, Out])(implicit arg0: Describe[Out]): DescribeSyntax[In, Out]
- implicit def EachSyntaxIterable[A](self: Iterable[A]): EachSyntaxIterable[A]
- Definition Classes
- EachSyntax
- implicit def EachSyntaxOption[A](self: Option[A]): EachSyntaxOption[A]
- Definition Classes
- EachSyntax
- implicit final def FromAliasing[A](self: From[A]): FromAliasing[A]
- Definition Classes
- AliasingSyntax
- implicit final def JoinSyntax[In <: From[_], Out](self: Query[In, Out]): JoinSyntax[In, Out]
- implicit final def MapQuerySyntax[In, K, V](self: Query[In, (K, V)]): MapQuerySyntax[In, K, V]
- implicit final def OrderBySyntax[In, Out](self: Query[In, Out]): OrderBySyntax[In, Out]
- Definition Classes
- OrderingSyntax
- implicit def OrderingAscDescSyntax[A](self: A): OrderingAscDescSyntax[A]
- Definition Classes
- OrderingSyntax
- implicit final def QueryAliasing[In](self: Query[From[In], In]): QueryAliasing[In]
- Definition Classes
- AliasingSyntax
- implicit final def QueryToSyntax[In, Out](self: Query[In, Out]): QueryToSyntax[In, Out]
- implicit final def RunSyntax[In, Out](self: QueryResult[In, Out]): RunSyntax[In, Out]
- implicit final def RunSyntaxAny[Out](self: QueryResult[Any, Out]): RunSyntaxAny[Out]
- implicit final def ShowSyntax[In, Out](self: Query[In, Out])(implicit arg0: ShowAsTable[Out]): ShowSyntax[In, Out]
- final val Tag: izumi.reflect.Tag.type
- Definition Classes
- ScalaqlAliases
- implicit final def WhereSyntax[A](self: A): WhereSyntax[A]
- implicit final def WindowSyntax[In, Out](self: Query[In, Out]): WindowSyntax[In, Out]
- 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])
- final def from[A](values: Iterable[A])(implicit arg0: scalaql.Tag[A]): From[A]
Wraps the specified scala collection into a query input type.
Wraps the specified scala collection into a query input type.
Example:
val query: Query[From[Person], PeopleStatistics] = ??? val people: List[Person] = ??? query .show() .run( from(people) )
- A
the input type
- values
input values
- returns
a value which could be then used as a query input
- Definition Classes
- ScalaqlDsl
- 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
- 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 val select: SelectDsl
Entrypoint for building queries.
Entrypoint for building queries.
It is allowed to define a query based on:
1. Its input type, so that input values will be provided later:
val query = select[Person]
2. Existing scala collection:
val people: List[Person] = ??? val query = select.from(people)
- Definition Classes
- ScalaqlDsl
- 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()