1. How to emulate LEFT JOIN FETCH using Record-based projections (vladmihalcea.com)
Introduction In this article, I’m going to show you how to emulate a LEFT JOIN FETCH between two root entities without fetching the intermediate child entity. I got the inspiration for this article by this comment thread on my blog. Domain Model Let’s assume we have the following entities: The Post ...