Trait/Object

io.getquill.dsl.DynamicQueryDsl

DynamicQuery

Related Docs: object DynamicQuery | package DynamicQueryDsl

Permalink

sealed trait DynamicQuery[+T] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamicQuery
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def q: Quoted[Query[T]]

    Permalink
    Attributes
    protected[io.getquill]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[U >: T](q2: Quoted[Query[U]]): CoreDsl.DynamicQuery[U]

    Permalink
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def avg[U >: T](implicit n: Numeric[U]): Quoted[Option[T]]

    Permalink
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def concatMap[R, U](f: (Quoted[T]) ⇒ Quoted[U])(implicit ev: (U) ⇒ Iterable[R]): CoreDsl.DynamicQuery[R]

    Permalink
  9. def contains[B >: T](value: Quoted[B]): Quoted[Boolean]

    Permalink
  10. def contains[B >: T](value: B)(implicit enc: CoreDsl.Encoder[B]): Quoted[Boolean]

    Permalink
  11. def distinct: CoreDsl.DynamicQuery[T]

    Permalink
  12. def distinctOn[R](f: (Quoted[T]) ⇒ Quoted[R]): CoreDsl.DynamicQuery[R]

    Permalink
  13. def drop(n: Int): CoreDsl.DynamicQuery[T]

    Permalink
  14. def drop(n: Quoted[Int]): CoreDsl.DynamicQuery[T]

    Permalink
  15. def dropOpt(opt: Option[Int]): CoreDsl.DynamicQuery[T]

    Permalink
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  18. def filter(f: (Quoted[T]) ⇒ Quoted[Boolean]): CoreDsl.DynamicQuery[T]

    Permalink
  19. def filterIf(cond: Boolean)(f: (Quoted[T]) ⇒ Quoted[Boolean]): CoreDsl.DynamicQuery[T]

    Permalink
  20. def filterOpt[O](opt: Option[O])(f: (Quoted[T], Quoted[O]) ⇒ Quoted[Boolean])(implicit enc: CoreDsl.Encoder[O]): CoreDsl.DynamicQuery[T]

    Permalink
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def flatMap[R](f: (Quoted[T]) ⇒ Quoted[Query[R]]): CoreDsl.DynamicQuery[R]

    Permalink
  23. def fullJoin[A >: T, B](q2: Quoted[Query[B]]): CoreDsl.DynamicJoinQuery[A, B, (Option[A], Option[B])]

    Permalink
  24. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  25. def groupBy[R](f: (Quoted[T]) ⇒ Quoted[R]): CoreDsl.DynamicQuery[(R, Query[T])]

    Permalink
  26. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  27. def isEmpty: Quoted[Boolean]

    Permalink
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. def join[A >: T](on: (Quoted[A]) ⇒ Quoted[Boolean]): CoreDsl.DynamicQuery[A]

    Permalink
  30. def join[A >: T, B](q2: Quoted[Query[B]]): CoreDsl.DynamicJoinQuery[A, B, (A, B)]

    Permalink
  31. def leftJoin[A >: T](on: (Quoted[A]) ⇒ Quoted[Boolean]): CoreDsl.DynamicQuery[Option[A]]

    Permalink
  32. def leftJoin[A >: T, B](q2: Quoted[Query[B]]): CoreDsl.DynamicJoinQuery[A, B, (A, Option[B])]

    Permalink
  33. def map[R](f: (Quoted[T]) ⇒ Quoted[R]): CoreDsl.DynamicQuery[R]

    Permalink
  34. def max[U >: T]: Quoted[Option[T]]

    Permalink
  35. def min[U >: T]: Quoted[Option[T]]

    Permalink
  36. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. def nested: CoreDsl.DynamicQuery[T]

    Permalink
  38. def nonEmpty: Quoted[Boolean]

    Permalink
  39. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  40. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  41. def rightJoin[A >: T](on: (Quoted[A]) ⇒ Quoted[Boolean]): CoreDsl.DynamicQuery[Option[A]]

    Permalink
  42. def rightJoin[A >: T, B](q2: Quoted[Query[B]]): CoreDsl.DynamicJoinQuery[A, B, (Option[A], B)]

    Permalink
  43. def size: Quoted[Long]

    Permalink
  44. def sortBy[R](f: (Quoted[T]) ⇒ Quoted[R])(implicit ord: Ord[R]): CoreDsl.DynamicQuery[T]

    Permalink
  45. def sum[U >: T](implicit n: Numeric[U]): Quoted[Option[T]]

    Permalink
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  47. def take(n: Int): CoreDsl.DynamicQuery[T]

    Permalink
  48. def take(n: Quoted[Int]): CoreDsl.DynamicQuery[T]

    Permalink
  49. def takeOpt(opt: Option[Int]): CoreDsl.DynamicQuery[T]

    Permalink
  50. def toString(): String

    Permalink
    Definition Classes
    DynamicQuery → AnyRef → Any
  51. def transform[U, V, R](f: (Quoted[U]) ⇒ Quoted[V], t: (Ast, Ident, Ast) ⇒ Ast, r: (Ast) ⇒ R = dyn): R

    Permalink
    Attributes
    protected[this]
  52. def transformOpt[O, R, D <: CoreDsl.DynamicQuery[T]](opt: Option[O], f: (Quoted[T], Quoted[O]) ⇒ Quoted[R], t: ((Quoted[T]) ⇒ Quoted[R]) ⇒ D, thiz: D)(implicit enc: CoreDsl.Encoder[O]): D

    Permalink
    Attributes
    protected[this]
  53. def union[U >: T](q2: Quoted[Query[U]]): CoreDsl.DynamicQuery[U]

    Permalink
  54. def unionAll[U >: T](q2: Quoted[Query[U]]): CoreDsl.DynamicQuery[U]

    Permalink
  55. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. def withFilter(f: (Quoted[T]) ⇒ Quoted[Boolean]): CoreDsl.DynamicQuery[T]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped