RE: Count

2016-11-17 Thread Aída Betzabeth Dávila Sotelo
Thank you very much I had already tried that option and it had not worked. But when I saw your example, I found my mistake. Thanks Aida -Mensaje original- De: Jeroen van der Wal [mailto:jer...@stromboli.it] Enviado el: jueves, 17 de noviembre de 2016 11:46 Para: users Asunto: Re:

Re: Count

2016-11-17 Thread Jeroen van der Wal
Returning a collection of view models would work: @ViewModel // or @DomainObject(nature = Nature.VIEW_MODEL) public class UserCount { public UserCount(final LocalDate date, final BigInteger count) { this.date = date; this.count = count; } @Getter @Setter // Uses

Count

2016-11-17 Thread Aída Betzabeth Dávila Sotelo
Hi! I have the following issue. I need to do a count of registered users per day in my application. I have the correct query, but I cannot display the results on screen. I tried with different types of data, at the end I put a simple list of string but sends me the following error, instead of