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: CoreDsl.Quoted[CoreDsl.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: CoreDsl.Quoted[CoreDsl.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]): CoreDsl.Quoted[Option[T]]

    Permalink
  7. def clone(): AnyRef

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

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

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

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

    Permalink
  12. def drop(n: Int)(implicit enc: CoreDsl.Encoder[Int]): CoreDsl.DynamicQuery[T]

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

    Permalink
  14. def dropOpt(opt: Option[Int])(implicit enc: CoreDsl.Encoder[Int]): CoreDsl.DynamicQuery[T]

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

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

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

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

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

    Permalink
  20. def finalize(): Unit

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

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

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

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

    Permalink
  25. def hashCode(): Int

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

    Permalink
  27. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

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

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

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

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

    Permalink
  37. def nonEmpty: CoreDsl.Quoted[Boolean]

    Permalink
  38. final def notify(): Unit

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

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

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

    Permalink
  42. def size: CoreDsl.Quoted[Long]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  46. def take(n: Int)(implicit enc: CoreDsl.Encoder[Int]): CoreDsl.DynamicQuery[T]

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

    Permalink
  48. def takeOpt(opt: Option[Int])(implicit enc: CoreDsl.Encoder[Int]): CoreDsl.DynamicQuery[T]

    Permalink
  49. def toString(): String

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

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

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

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

    Permalink
  54. final def wait(): Unit

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

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

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

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped