Echo JS 0.11.0

<~>
pianoroy 3952 days ago. link 3 points
Just a comment that may be helpful: One of JavaScript's greatest strengths (and especially so in ES6 and beyond) is its strong support for functional patterns. One thing I appreciate about MS's Entity Framework is the strong support for functional patterns (a la LINQ) -- one can build a query by stringing together a series of higher-order functions, and the DB query is only executed when the expression is enumerated.

Any ORM that supports functional patterns (especially higher-order functions with delayed query execution/enumeration) will have my interest.

Replies