Since the introduction of Java 8, is Hibernate waiting some changes? specially
Is there any way to write queries with lambdas in Hibernate? (i.e. like a .net Linq-to-SQL style)
If not, when it's coming (If it's planned to come).
for example something like these:
User u1 = dbo.Users.firstOrDefault(f -> f.userId = 10);
List<User> users = dbo.Users.selectMany(w -> w.userId > 5);