shopera007
shopera007
A simple query with an EXISTS clause and pagination adds an unnecessary inner ID query: ``` final CriteriaBuilder criteriaBuilder = this.criteriaBuilderFactory.create(this.entityManager, ProductQuestion.class); final CriteriaBuilder criteriaBuilder = criteriaBuilder.from(ProductQuestion.class, PRODUCT_QUESTION_ALIAS); criteriaBuilder .whereExists()...
Hello, How can I set a dynamic limit using the @Limit annotation in Blaze-Persistence when retrieving for example top-ranked answers for product questions in an entity view: Here i want...
It seems that I'm encountering an issue with Blaze Persistence related to a query that involves a join with a subquery and pagination. When pagination is applied, it throws the...