jLinq – LINQ for JavaScript

Many developers are using JavaScript today. However, the programming JavaScript is not pleasant occupation. Therefore, many JavaScript frameworks (jQuery, ExtJS, Prototype, Moo etc) and libraries appeared lately.

jLinq logo

Today I wish to tell about jLinq library. Its uniqueness consists that with its help we can do LINQ-inquiries in JavaScript a code. jLinq query is looking as follows.

var results = jLinq.from(data.users)
    .startsWith("first", "a")
    .orEndsWith("y")
    .orderBy("admin","age")
    .select();

Thus, we can get benefits of LINQ when we write code in JavaScript.

You can try it and execute some sample queries with jLinq.

More info:

No Comments