Skip to content

Commit

Permalink
added Join...also removed ConcatQuery (use Concat) and removed UnionQ…
Browse files Browse the repository at this point in the history
…uery (use Union)
  • Loading branch information
dibiancoj committed Jun 8, 2016
1 parent 14c9b04 commit 6eeff58
Show file tree
Hide file tree
Showing 19 changed files with 937 additions and 498 deletions.
1 change: 1 addition & 0 deletions Linq4Javascript/Scripts/ConfigForWorkingAsync.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Linq4Javascript/Scripts/JLinq Change Log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,7 @@
3.0.2 - 6/1/2016
-Added ElementAt(). Pass in an index and it will return the element at that index. If index is greater then the number of items you will get a ArgumentOutOfRangeException exception
-Added ElementAtOrDefault(). Pass in an index and it will return the element at that index. Will return null if the index is greater then the number of items in the query or array.

3.0.3 - 6/8/2016
-Added Join(). This is where you combine the record set that match on the property selected. For the outer collection you can pass in an array or collection
-Also removed ConcatQuery and UnionQuery. You now can just use concat and union.
168 changes: 132 additions & 36 deletions Linq4Javascript/Scripts/JLinq.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Linq4Javascript/Scripts/JLinq.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 6eeff58

Please sign in to comment.