What is the Java equivalent for LINQ?

Ahmed Atia picture Ahmed Atia · Aug 1, 2009 · Viewed 293.9k times · Source

What is Java equivalent for LINQ?

Answer

AgileJon picture AgileJon · Aug 1, 2009

There is nothing like LINQ for Java.

...

Edit

Now with Java 8 we are introduced to the Stream API, this is a similar kind of thing when dealing with collections, but it is not quite the same as Linq.

If it is an ORM you are looking for, like Entity Framework, then you can try Hibernate

:-)