Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

The easiest way is still too verbose. I quote an example. After a record got into r:

  Integer id = r.getValue(AUTHOR.ID);
  String firstName = r.getValue(AUTHOR.FIRST_NAME);
  String lastName = r.getValue(AUTHOR.LAST_NAME);
I would expect

  r.id
  r.first_name
  r.last_name
If the ORM has to create the classes for the tables, let it do it.


You get that in Kotlin. Or r.getId(), r.getFirstName(), etc. in Java. So what's the issue here?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: