Details
-
Improvement
-
Status: In Progress
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
It will be nice if query expressions has the following features:
Support aggregate functions. Examples:
Long countByName(String name); Long countDistinctByName(String name); Double sumPriceByCategory(Category category); BigDecimal avgPriceByCategory(Category category);
Support remove expressions. Examples:
void removeByName(String name); void removeById(Long id);
Support TOP and FIRST. Examples:
void findTop10ByName(String name); void findFirst10ByName(String name);
Support GROUP BY and HAVING clauses. Examples:
List<Product> findByNameGroupByName(String name); List<Product> findByNameGroupByNameHavingNameLike(String name);
Attachments
1.
|
Support remove expressions | Closed | Daniel Cunha | |
2.
|
Support aggregate functions | Open | Daniel Cunha | |
3.
|
Support TOP and FIRST | Closed | Daniel Cunha | |
4.
|
Support GROUP BY and HAVING clauses | Open | Daniel Cunha |