Is their an equivalent to C#'s Expression API in scala?
For example, I would like to have a lambda like this:
(Foo) => Foo.bar
and be able to access "bar" in the function it is passed to.
|
Is their an equivalent to C#'s Expression API in scala? For example, I would like to have a lambda like this:
and be able to access "bar" in the function it is passed to. |
|||
|
|
|
This is not supported by Scala. ScalaQL: Language-Integrated Database Queries for Scala describes a LINQ-like functionality in Scala:
|
|||||
|
|
There is an experimental |
|||
|
|
|
It's not quite clear to me what you want. If you want a function that returns a getter for a field, you can do that quite easily:
The key is to turn the getter h.s into a function via (h.s _). |
|||
|
|