What is Java equivalent for LINQ?
feedback
|
|
There is nothing like LINQ for Java. | |||||||||||||||||||
feedback
|
|
You can select the items in a collection (and much more) in a more readable way by using the lambdaj library http://code.google.com/p/lambdaj/ It has some advantages over the Quaere library because it doesn't use any magic string, it is completely type safe and in my opinion it offers a more readable DSL. | |||||||
feedback
|
|
there is a project called quaere its a java framework which adds abilitiy to query collections | |||||||||||||
feedback
|
|
I developed a alternate solution, Coollection. Is simple and focused on the most used actions of iteration over Collections. Use like that:
from(people).where("name", eq("Arthur")).first();
from(people).where("age", lessThan(20)).all();
from(people).where("name", not(contains("Francine"))).all();
| |||||
feedback
|
|
You won't find an equivalent of LINQ unless you use the javacc to create your own equivalent. Until that day when someone finds a viable way to do so, there are some good alternatives, such as
| ||||
|
feedback
|
|
A more C#-like solution is JaQue. It has both: linq-to-object/xml functionality and a provider model with API very similar to MS LINQ. A simple JPA (Hibernate) provider is implemented. After Java will get closures, it will be elegant as well. | |||
|
feedback
|
|
See SBQL4J. It's type-safe strong query language integrated with Java. Allows to write complicated and multiply nested queries. There is a lot of operators, Java methods can be invoked inside queries so as constructors. Queries are translated to pure Java code (there is no reflection at runtime) so execution is very fast. EDIT: Well, so far SBQL4J it's the ONLY extension to Java language which gives query capabilities similar to LINQ. There are some interesting project like Quaere and JaQue but they are only API's, not syntax / semantics extension with strong type safety in compile time. | ||||
|
feedback
|
|
There are many LINQ equivalents for Java, see here for a comparison. For a typesafe Quaere/LINQ style framework, consider using Querydsl. Querydsl supports JPA/Hibernate, JDO, SQL and Java Collections. I am the maintainer of Querydsl, so this answer is biased. | ||||
|
feedback
|
|
Lambdas are coming to Java 8 scheduled for 2012 in the form of JSR-335 - Lambda Expressions for the JavaTM Programming Language I'm not fully aware of how much support will be added to the collections library, though one example provided does demonstrate a similar sortBy ability. | |||||||||
feedback
|
|
Just to add another alternative: Java 6 does have a solution for type-safe database queries using the javax.persistence.criteria package. Though i must say that this is not really LINQ, because with LINQ you can query any IEnumerable. | |||
feedback
|
|
There's a very good library that you can use for this. Located here: https://github.com/nicholas22/jpropel-light Lambdas won't be available until Java 8 though, so using it is a bit different and doesn't feel as natural. | |||
|
feedback
|
|
you can use scala, it is similar in syntax and it's actually probably more powerful than linq. | |||
|
feedback
|
|
JaQu is the LINQ equivalent for Java. Although it was developed for the H2 database, it should work for any database since it uses JDBC. | |||
|
feedback
|
|
There was the programming language Pizza (a Java extension) and you should have a look to it. - It uses the concept of "fluent interfaces" to query data in a declarative manner and that is in principle identical to LINQ w/o query expressions (http://en.wikipedia.org/wiki/Pizza_programming_language). But alas it was not pursued, but it would have been one way to get something similar to LINQ into Java. | |||
|
feedback
|
|
Maybe not the answer you're hoping for, but if some part of you code need heavy work on collections (searching, sorting, filtering, transformations, analysis) you may take in consideration to write some classes in Clojure or Scala. Because of their functional nature, working with collections is what they're best at. I don't have much experience with Scala, but with Clojure you'd probably find a more powerful Linq at your fingertips and once compiled, the classes you'd produce would integrate seamlessy with the rest of the code base. | |||
feedback
|
|
Check this out https://code.google.com/p/tiny-q/ | |||||||
feedback
|