$linq 是一个Javascript版本.NET Linq to Objects
jopen
12年前
$linq 是采用JavaScript来实现.NET的LINQ的JS库,支持查询、条件查询、排序、distinct、分组、联合和排除查询等。
$linq 同时实现了一些源于 MoreLinq (http://code.google.com/p/morelinq)中的方法,可与 jQuery 的集合和数组协作。
一些Linq to Objects方法实现。
- select
- selectMany
- where
- orderBy
- thenBy
- distinct
- groupBy
- groupJoin
- join
- except
- union
- intersect
- take/takeUntil
- skip/skipUntil
下面是一个排序示例:
var people = [{first: "Jason", last: "Bourne"}, {first: "Gandalf", last: "The Grey"}, {first: "John", last: "Smith"}, {first: "Albert", last: "Smith"}]; var results = $linq(people) .orderBy(function (x) { return x.last; }) .thenBy("x => x.first") .toArray();