Package com.blazebit.persistence
Interface FetchBuilder<X extends FetchBuilder<X>>
- Type Parameters:
X
- The concrete builder type
- All Known Subinterfaces:
CriteriaBuilder<T>
,FullQueryBuilder<T,
,X> PaginatedCriteriaBuilder<T>
public interface FetchBuilder<X extends FetchBuilder<X>>
An interface for builders that support fetching.
- Since:
- 1.2.0
- Author:
- Christian Beikov
-
Method Summary
-
Method Details
-
fetch
Adds an implicit join fetch to the query.- Parameters:
path
- The path to join fetch- Returns:
- The query builder for chaining calls
-
fetch
Adds an implicit join fetch for every given path to the query.- Parameters:
paths
- The paths to join fetch- Returns:
- The query builder for chaining calls
-