Skip to content

Move To Git Hub

Compare
Choose a tag to compare
@dibiancoj dibiancoj released this 19 Jun 18:35
· 114 commits to master since this release

Moved From Code Plex To Git Hub: (https://linq4javascript.codeplex.com/)

-Removed 2 deprecated method. LastItem() & AnyItems. Use Last() / Any() for the equivalent methods.
-Added AsQueryable() as an extension method off of an Array. Makes it easier to do the following:

 ie: var query = List.AsQueryable();

 if (filter1 != null)
 {
      query = query.Where(function(x .....))
 }

 if (filter2 != null)
 {
      query = query.Where(function(x......))
 }

 //grab the results
 var results = query.ToArray();