Uses of Class
io.ebean.FetchConfig
Packages that use FetchConfig
-
Uses of FetchConfig in io.ebean
Methods in io.ebean that return FetchConfigModifier and TypeMethodDescriptionstatic FetchConfigFetchConfig.ofCache()Return FetchConfig to eagerly fetch the relationship using L2 cache.static FetchConfigFetchConfig.ofDefault()Return FetchConfig to fetch the relationship using SQL join.static FetchConfigFetchConfig.ofLazy()Return FetchConfig to lazily load the relationship.static FetchConfigFetchConfig.ofLazy(int batchSize) Return FetchConfig to lazily load the relationship specifying the batch size.static FetchConfigFetchConfig.ofQuery()Return FetchConfig to eagerly fetch the relationship using a secondary query.static FetchConfigFetchConfig.ofQuery(int batchSize) Return FetchConfig to eagerly fetch the relationship using a secondary with a given batch size.Methods in io.ebean with parameters of type FetchConfigModifier and TypeMethodDescriptionQueryBuilderProjection.fetch(String path, FetchConfig fetchConfig) Additionally specify a JoinConfig to specify a "query join" and or define the lazy loading query.QueryBuilderProjection.fetch(String path, String fetchProperties, FetchConfig fetchConfig) Additionally specify a FetchConfig to use a separate query or lazy loading to load this path.