|
|
|
|
|
by rjbwork
3414 days ago
|
|
In the real world, MOST people are using the "it compiles to" version directly in the code. I certainly don't write the "from x in y select" version, except in the case of multiple hairy joins. Even those have become second nature at this point. It's just more readable, and turns it into an object pipeline/functional programming style instead. The Java 8 streams were pretty much directly taken from LINQ and given their traditional functional names. |
|
That was my point. I was disagreeing with olmo's suggestion that Java "systematically ignored" LINQ.