org.squeryl.dsl

ManyToMany

trait ManyToMany[O, A] extends Query[O]

This trait is what is referred by both the left and right side of a manyToMany relation. Type parameters are : O: the type at the "other" side of the relation A: the association type i.e. the entity in the "middle" of the relation

Object mapping to the "middle" entity are called "association objects"

this trait extends Query[O] and can be queried against like a normal query.

Note that this trait is used on both "left" and "right" sides of the relation, but in a given relation

Linear Supertypes
Query[O], Queryable[O], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ManyToMany
  2. Query
  3. Queryable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def assign(o: O): A

    Creates a new association object 'a' and calls assign(o,a)

  2. abstract def assign(o: O, a: A): A

    returns

    the 'a' parameter is returned

  3. abstract def associate(o: O): A

    Creates a new association object 'a' and calls associate(o,a)

    Creates a new association object 'a' and calls associate(o,a)

    Note that this method will fail if the association object has NOT NULL constraint fields appart from the foreign keys in the relations

  4. abstract def associate(o: O, a: A): A

    returns

    the 'a' parameter is returned

  5. abstract def associationMap: Query[(O, A)]

    returns

    a Query of Tuple2 containing all objects on the 'other side' along with their association object

  6. abstract def associations: Query[A]

    a Query returning all of this member's association entries

  7. abstract def ast: ExpressionNode

    Definition Classes
    Query
  8. abstract def dissociate(o: O): Boolean

    Causes the deletion of the 'Association object' between this side and the other side of the relation.

    Causes the deletion of the 'Association object' between this side and the other side of the relation.

    returns

    true if 'o' was associated (if an association object existed between 'this' and 'o') false otherwise

  9. abstract def dissociateAll: Int

    Deletes all "associations" relating this "side" to the other

  10. abstract def distinct: Query[O]

    Definition Classes
    Query
  11. abstract def dumpAst: String

    Definition Classes
    Query
  12. abstract def forUpdate: Query[O]

    Definition Classes
    Query
  13. abstract def invokeYield(rsm: ResultSetMapper, resultSet: ResultSet): O

    Attributes
    protected[org.squeryl]
    Definition Classes
    Query
  14. abstract def iterator: Iterator[O]

    Definition Classes
    Query
  15. abstract def kedL: KeyedEntityDef[O, _]

  16. abstract def name: String

    Definition Classes
    Queryable
  17. abstract def page(offset: Int, pageLength: Int): Query[O]

    Definition Classes
    Query
  18. abstract def statement: String

    returns a 'pretty' statement, i.

    returns a 'pretty' statement, i.e. values are printed instead of '?'

    Definition Classes
    Query

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. def headOption: Option[O]

    Definition Classes
    Query
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def minus(q: Query[O]): Query[O]

    Definition Classes
    Query
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. def single: O

    Returns the first row of the query.

    Returns the first row of the query. An exception will be thrown if the query returns no row or more than one row.

    Definition Classes
    Query
  20. def singleOption: Option[O]

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Definition Classes
    Query
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. def union(q: Query[O]): Query[O]

    Definition Classes
    Query
  24. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  27. def where(whereClauseFunctor: (O) ⇒ LogicalBoolean)(implicit dsl: QueryDsl): Query[O]

    Definition Classes
    Queryable

Inherited from Query[O]

Inherited from Queryable[O]

Inherited from AnyRef

Inherited from Any

Ungrouped