Repository interface for Game entities.
More...
Public Member Functions | |
| List< Game > | findAllUnselected (@Param("playerId") long playerId, Sort sort) |
| Retrieves all non-selected games for a specific player. | |
Repository interface for Game entities.
Provides standard CRUD operations and query methods for Game objects using Spring Data JPA.
| List< Game > fr.softsf.sudokufx.repository.GameRepository.findAllUnselected | ( | @Param("playerId") long | playerId, |
| Sort | sort ) |
Retrieves all non-selected games for a specific player.
Uses JOIN FETCH to eagerly load the associated Player entity, minimizing N+1 performance overhead.
| playerId | the unique identifier of the target player |
| sort | sorting criteria for the resulting game list |