What is Java equivalent for LINQ?
|
|
There is nothing like LINQ for Java. |
|||||||||||||||||||||
|
|
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. |
|||||||||
|
|
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();
|
|||||
|
|
Lambdas are coming to Java 8 scheduled for the summer of 2013 in the form of JSR-335 - Lambda Expressions for the JavaTM Programming Language
UPDATE: The State of the Lambda - Libraries Edition has been updated once again which now covers streams, internal iteration, short-circuiting and constructor references. I advise you all to read the new document. |
|||||||||||||||
|
|
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
|
||||
|
|
|
there is a project called quaere its a java framework which adds abilitiy to query collections |
|||||||||||||
|
|
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. |
|||||
|
|
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. |
|||||
|
|
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. |
|||||
|
|
you can use scala, it is similar in syntax and it's actually probably more powerful than linq. |
|||
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
For basic functional collections, Java 8 has it built in, most of the major non-Java JVM languages have it built in (Scala, Clojure, etc), and you can get add on libs for earlier Java versions. For full language integrated access to a SQL database, Scala (runs on the JVM) has Slick |
|||
|
|
|
I tried guava-libraries from google. It has a
Seems to be an extensive library for Java. Certainly not as succinct as LINQ but looks interesting. |
||||
|
|
|
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. |
|||
|
|
|
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. |
|||||
|
|
It sounds like the Linq that everyone is talking about here is just LinqToObjects. Which I believe only offers functionality that can already be accomplished today in Java, but with really ugly syntax. What I see as the real power of Linq in .Net is that lambda expressions can be used in a context requiring either a Delegate or an Expression and will then be compiled into the appropriate form. This is what allows things like LinqToSql (or anything other than LinqToObjects) to work, and allows them to have a syntax identical to LinqToObjects. It looks like all of the projects referred to above are only offering the capabilities of LinqToObjects. Which makes me thing that LinqToSql-type functionality is not on the horizon for Java. |
|||
|
|
|
For LINQ (LINQ to Objects), Java 8 will have something equivalent, see Project Lambda. It has Enumerable's LINQ to Objects extensions like stuffs. But for more complicated LINQ things like Expression and ExpressionTree (these are needed for LINQ to SQL and other LINQ providers if they want provide something optimized and real), there is not any equivalent yet but maybe we will see that in future :) But I don't think there will be anything like declaratives queries on Java in future. |
||||
|
|
|
An anonymous user mentioned another one, Diting:
|
||||
|
|
|
There is no such feature in java. By using the other API you will get this feature. Like suppose we have a animal Object containing name and id. We have list object having animal objects. Now if we want to get the all the animal name which contains 'o' from list object. we can write the following query
Above Query statement will list of the animals which contains 'o' alphabet in their name. More information please go through following blog. http://javaworldwide.blogspot.in/2012/09/linq-in-java.html |
|||
|
|
|
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. |
|||||||
|
|
Check out tiny-q. (Note that you currently can't download it.) Here's an example adapted the above link:
|
||||