Are there any sane analogues to LINQ (.NET) exists for Scala?
|
|
It depends on what exactly you mean by "LINQ". LINQ is many things. The most obvious answer would be: just use the .NET port of Scala. It gives you full native access to everything in .NET, which obviously includes LINQ. Unfortunately, the .NET port of Scala was dropped a couple of years ago. Fortunately, it was picked up again a couple of months ago, with official funding directly from Microsoft no less. You can expect a release sometime in the 2011/2012 timeframe. Anyway, what is LINQ? A couple of features where added to .NET and specifically C# and VB.NET for LINQ. They are not technically part of LINQ, but are necessary prerequisites: type inference, anonymous (structural) types, lambda expressions, function types ( Also not directly part of LINQ, but in C#, LINQ query expressions can be used to generate XML, to emulate VB.NET's XML literals. Scala has XML literals, like VB.NET. More specifically, LINQ is
In Scala, like in pretty much any other functional language (and in fact also pretty much any other object-oriented language, too), the query operators are simply part of the standard collections API. In .NET, they have a little bit weird names, whereas in Scala, they have the same standard names they have in other languages: SQL APIs are not built into Scala, but there are third-party APIs which implement the collection API. Scala also has specialized syntax for those APIs, but unlike Haskell, which tries to make them look like imperative C blocks and C#, which tries to make them look like SQL queries, Scala tries to make them look like But if you really want to know whether or not there are analogues for LINQ in Scala, you will first have to specificy what exactly you mean by "LINQ". (And of course, if you want to know whether they are "sane", you will have to define that, too.) |
|||||||||||||||
|
|
All LINQ Linq:
scala:
|
||||
|
|
|
There are many situations in Scala where you can use monadic constructs as a sort of query language. For example, to query XML (in this case, extracting URLs from links in some XHTML):
For an analogue of LINQ to SQL, the closest thing is probably ScalaQuery. To lift an example right out of the docs:
|
||||
|
|
|
Slick is a modern database query and access library for Scala. (http://slick.typesafe.com/)
|
|||
|
|