You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
recordBookSummary(Stringtitle, Stringauthor) {}
em.createQuery("select book.title, book.author.name from Book book", BookSummary.class).getResultList();
instead of forcing them into the extra ceremony of:
recordBookSummary(Stringtitle, Stringauthor) {}
em.createQuery("select new BookSummary(book.title, book.author.name) from Book book", BookSummary.class).getResultList();
This isn't critical, of course, but it's a pretty easy simplification to the user experience.
The text was updated successfully, but these errors were encountered:
Nothing to be sorry about @gavinking I presume the purpose of this repo is to discuss things to make sure things are clear and less behaviour is unspecified and vendor dependent
I would like to propose that we let people write:
instead of forcing them into the extra ceremony of:
This isn't critical, of course, but it's a pretty easy simplification to the user experience.
The text was updated successfully, but these errors were encountered: