Hi,

I use JpaRepository with an Entity ("Book") which has an OneToOne mapping to another entity ("BookComment" -fetch = FetchType.EAGER)

When I call findAll (with paging) on the repository I see the sql select for the books and than several selects (for every found book a select on bookcomment).

How can I achieve that there is only 1 call (select with join)???

TIA

Martin