该库提供了完整的LINQ API:https :
//github.com/nicholas22/jpropel-light
它使用功能样式的构造来做到这一点,并且还使用延迟执行。
// select names starting with j, using LINQ-style statementsnew String[] { "james", "john", "john", "eddie" }.where(startsWith("j")).distinct().all(println());


