|
|
Browse by Tags
All Tags » LINQ » Quaere
-
Casper wrote an interesting comment to my screen cast about LINQ and Quaere auto completion which deserves an answer in the form of a blog post. As the title suggests you’re in for a ride through many different concepts in .NET, Java, LINQ and Quaere amongst other things. Fasten your seat belts!
For those of you who didn’t bother ...
-
Thomas brought up a question on auto completion for LINQ queries in Visual Studio that has spawned a discussion on my Bare Naked LINQ post. The best way to show the differences and similarities is to do a screen cast so here you are; enjoy!
A high res QuickTime version is available here.
Community Server screwed up my first posts. This ...
-
Some ever recurring discussions around Quaere are “this isn’t really LINQ for Java” and “cool, but this isn’t truly type-safe”. In this post I’ll dive into these topics by explaining how LINQ works…
LINQ to Objects
The language integration in C# 3.0 and Visual Basic 9 makes LINQ very readable and ...
-
Yesterday I came across Chris Wanstrath Ambition project which is very similar to my Quaere project. To exemplify the similarities between LINQ, Ambition and Quaere, here is the same query expressed in each ''language''.
LINQ var expensiveProducts =
from p in products
where p.UnitsInStock > 0 ...
-
When I was writing the early spikes for the Quaere project, I wrote a blog post entitled ''The Poor Man's Lambda'', back then I used anonymous classes for the ''lambda'' expressions. Integer[] numbers={ 5, 4, 1, 3, 9, 8, 7, 2, 0}; Object[] firstSmallNumbers = (Object[])
from(digits).where(new Predicate() {
public boolean ...
-
Even if InfoQ broke the news last week, I'm very pleased to announce that Quaere gotten a proper home at the Codehaus.
Lots of stuff have been fixed or added to the codebase after I announced the project at JavaZone. Because of this, I have now removed the snapshot that was avilable here. I encourage those of you who are interested in ...
|
|
|