I want to write a Spring Data JPA repository interface method signature that will let me find entities with a property of an embedded object in that entity. Does anyone know
The above - findByBookIdRegion() did not work for me. The following works with the latest release of String Data JPA:
Page findByBookId_Region(Region region, Pageable pageable);