Jpa namedquery with left join fetch

后端 未结 2 886
独厮守ぢ
独厮守ぢ 2021-01-13 07:58

this is my namedquery:

@NamedQuery( name = \"User.findOneWithLists\", query = \"SELECT u FROM User u \"

相关标签:
2条回答
  • 2021-01-13 08:06

    For join conditions Hibernate provides the with keyword, even before JPA 2.1.

    The relevant part of your query thus would look like this:

    SELECT u FROM User u  ... LEFT JOIN u.st WITH st.deleted = false
    

    I'm not sure about LEFT JOIN FETCH u.cl with u.id= :id but if I remember correctly, that's not as easy and might have to be resolved with an adapted join and u.ui = :id in the where condition.

    LEFT JOIN FETCH u.st WITH st.deleted = false`

    This is not supported, since you can't do a partial fetch.

    0 讨论(0)
  • 2021-01-13 08:10

    Check a SQL syntax, you can't use left join after where clause. If you are looking at the SQL generated form that named query you will see that joined tables in the query the where clause comes after joins and should specify equal condition that links those tables by the keys. The primary key of the main table on the left and the foreign key of the joined table on the right. The joined table is specified by the property of your many-to-one association.

    @NamedQuery(
        name = "findOneWithLists",
        query = "from Table t left join User u where u.id= :id"
    )
    
    0 讨论(0)
提交回复
热议问题