You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltaspike.apache.org by "mojo code (JIRA)" <ji...@apache.org> on 2018/07/09 09:03:00 UTC

[jira] [Updated] (DELTASPIKE-1352) Get count of items with Criteria after filtering.

     [ https://issues.apache.org/jira/browse/DELTASPIKE-1352?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

mojo code updated DELTASPIKE-1352:
----------------------------------
    Priority: Major  (was: Minor)

> Get count of items with Criteria after filtering.
> -------------------------------------------------
>
>                 Key: DELTASPIKE-1352
>                 URL: https://issues.apache.org/jira/browse/DELTASPIKE-1352
>             Project: DeltaSpike
>          Issue Type: Test
>            Reporter: mojo code
>            Priority: Major
>
> Hi. I'm filtering using "Criteria" by some  conditions It works correctly and get the list of item that meets the conditions. I would like to get the count of items which meets the conditions without getting this list in memory, I just want to query this count number.
> Thanks in advance.
> ""
>     int findUserByCriteria(String name, Boolean active,  Integer idrol){
>         Criteria<User, User> c = criteria();
>          
>          if(name != null)
>              c.likeIgnoreCase(User_.name, name + "%");
>          
>          if(active != null)
>              c.eq(User_.active, active);
>          
>          if(idrol != null)
>              c.eq(User_.idRol, idrol);
> .....
>     {color:#ff0000}  int count = ¿?{color}
> .....
> return count;
> }
> ""



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)