Introduction In this article, we are going to see how we can fetch multiple JPA entity collections without generating an implicit Cartesian Product with the MULTISET strategy offered by the Blaze Persistence open-source project. The MULTISET fetch strategy is inspired by the MULTISET operator offered by jOOQ. If you are not familiar with the MULTISET operator, then check out this article first, in which I explain why this jOOQ feature is truly revolutionary. Domain Model Let’s consider we have the following entities in our application: The Post entity is the root aggregate,... Read More
The post How to fetch multiple JPA collections with Blaze Persistence MULTISET appeared first on Vlad Mihalcea.