Interface QueryDslSupport<E>

    • Method Detail

      • newDslQuery

        com.querydsl.jpa.impl.JPAQuery<E> newDslQuery()
        Attention: Please read documentation of QueryDslSupport before usage.
        Returns:
        a new JPAQuery. In most cases you should prefer using newDslQuery(Object) instead.
      • newDslQuery

        com.querydsl.jpa.impl.JPAQuery<E> newDslQuery​(E alias)
        Attention: Please read documentation of QueryDslSupport before usage.
        Parameters:
        alias - the alias.
        Returns:
        a new JPAQuery for the given Alias.
      • newDslDeleteClause

        com.querydsl.jpa.impl.JPADeleteClause newDslDeleteClause​(E alias)
        Attention: Please read documentation of QueryDslSupport before usage.
        Parameters:
        alias - the alias.
        Returns:
        a new JPADeleteClause for the given Alias.
      • newDslDeleteClause

        com.querydsl.jpa.impl.JPADeleteClause newDslDeleteClause​(com.querydsl.core.types.EntityPath<E> entityPath)
        Attention: Please read documentation of QueryDslSupport before usage.
        Parameters:
        entityPath - the EntityPath to delete from.
        Returns:
        a new JPADeleteClause for the given EntityPath.
      • newDslAlias

        E newDslAlias()
        Attention: Please read documentation of QueryDslSupport before usage.
        Returns:
        a new QueryDSL Alias for the managed entity.