All Projects → battousai999 → js-linq

battousai999 / js-linq

Licence: other
$linq is a Javascript version of .NET's Linq to Objects, with some query operations inspired by MoreLinq (an extension to Linq to Objects).

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
CSS
56736 projects
HTML
75241 projects

Labels

Projects that are alternatives of or similar to js-linq

linq4c
LINQ for C(GroupBy, GroupJoin, Join, Take, Where, Select, etc)
Stars: ✭ 39 (+14.71%)
Mutual labels:  linq
LinqSpecs
A toolset for use the specification pattern in LINQ queries.
Stars: ✭ 161 (+373.53%)
Mutual labels:  linq
linqjs
Perform queries on collections in the manner of C#s System.Linq in JavaScript
Stars: ✭ 14 (-58.82%)
Mutual labels:  linq
computation-expressions-workshop
F# Computation Expressions Workshop
Stars: ✭ 58 (+70.59%)
Mutual labels:  linq
Gridify
Easy and optimized way to apply Filtering, Sorting, and Pagination using text-based data.
Stars: ✭ 372 (+994.12%)
Mutual labels:  linq
lambda2js
Converts a C# expression tree (from Linq namespace) to a syntatically correct javascript code.
Stars: ✭ 51 (+50%)
Mutual labels:  linq
DynamicQueryable
λ Construct Linq queries using strings.
Stars: ✭ 46 (+35.29%)
Mutual labels:  linq
SqlBatis
A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite etc..
Stars: ✭ 34 (+0%)
Mutual labels:  linq
FastLinq
Drop-in-place Memory and Performance optimizations for LINQ
Stars: ✭ 22 (-35.29%)
Mutual labels:  linq
linq
A familiar set of functions that operate on JavaScript iterables (ES2015+) in a similar way to .NET's LINQ does with enumerables.
Stars: ✭ 39 (+14.71%)
Mutual labels:  linq
PropertyTranslator
Translates computed properties in LINQ queries into their implementation (based on Microsoft.Linq.Translations).
Stars: ✭ 14 (-58.82%)
Mutual labels:  linq
EFSqlTranslator
A standalone linq to sql translator that can be used with EF and Dapper.
Stars: ✭ 51 (+50%)
Mutual labels:  linq
Beetle.js
🪲 Javascript ORM, manage your data easily.
Stars: ✭ 53 (+55.88%)
Mutual labels:  linq
linq
LINQ to Objects for Java.
Stars: ✭ 151 (+344.12%)
Mutual labels:  linq
dotnet-arangodb
.NET Driver for ArangoDB
Stars: ✭ 52 (+52.94%)
Mutual labels:  linq
QuickDAO
Simple Data Access Object library with LinQ and multiengine support for (Windows,Linux,OSX/IOS/Android) and freepascal (Windows/Linux)
Stars: ✭ 49 (+44.12%)
Mutual labels:  linq
dotnet-learning
Материалы для обучения C# и ASP.NET
Stars: ✭ 62 (+82.35%)
Mutual labels:  linq
sanity-linq
Strongly-typed .Net Client for Sanity
Stars: ✭ 36 (+5.88%)
Mutual labels:  linq
LinqToXsdCore
LinqToXsd ported to .NET Core (targets .NET Standard 2 for generated code and .NET Core 3.1, .NET 5+ 6 for the code generator CLI tool).
Stars: ✭ 23 (-32.35%)
Mutual labels:  linq
go-streams
Stream Collections for Go. Inspired in Java 8 Streams and .NET Linq
Stars: ✭ 127 (+273.53%)
Mutual labels:  linq

$linq

This project was migrated from the CodePlex site: http://jscriptlinq.codeplex.com

Project Description

$linq is a Javascript version of .NET's Linq to Objects, with some query operations inspired by MoreLinq (an extension to Linq to Objects).

What is $linq?

$linq is an implementation of .NET Linq to Objects for Javascript. It implements most of the corresponding .NET Linq to Objects methods. It also implements some methods inspired by MoreLinq (http://code.google.com/p/morelinq). $linq will work with arrays and jQuery collections. $linq can also generate values from a numerical range, as an item repeated a given number of times, and from RegExp match results.

$linq also includes a version of the library written in Typescript (jslinq.ts).

NPM package page

https://www.npmjs.com/package/js-linq

NuGet package page

http://www.nuget.org/packages/jscriptlinq/

Documentation

https://github.com/battousai999/js-linq/wiki

Some of the Linq to Objects methods implemented

  • select
  • selectMany
  • where
  • orderBy
  • thenBy
  • distinct
  • groupBy
  • groupJoin
  • join
  • except
  • union
  • intersect
  • take/takeWhile/takeUntil
  • skip/skipWhile/skipUntil

Examples

A simple example of breaking up a sequence of numbers into even and odd arrays:

var list = $linq([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);

var evens = list.where(function (x) { return x % 2 == 0; }).toArray();
var odds = list.where("x => x % 2 == 1").toArray();

Ordering a list of people:

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();

Using an inner join:

var users = [{username: "asmith", domain: "north_america"},
    {username: "tmcfarland", domain: "europe"},
    {username: "cdeckard", domain: "north_america"}];
    
var groups = [{user: "ASMITH", groupName: "base_users"},
    {user: "TMCFARLAND", groupName: "admins"},
    {user: "CDECKARD", groupName: "base_users"},
    {user: "CDECKARD", groupName: "testers"}];
    
var results = $linq(users).join(groups,
    function (x) { return x.username; },    // key for 'users'
    "x => x.user",                          // key for 'groups'
    function (outer, inner)                 // function to generate results
    { 
        return "user: " + outer.username + 
            ", domain: " + outer.domain +
            ", group: " + inner.groupName;
    },
    "(x, y) => x.toLowerCase() == y.toLowerCase()");    

Examples using the Typescript version

A simple example of breaking up a sequence of numbers into even and odd arrays:

let list = Linq.from([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);

let evens = list.where(x => x % 2 == 0).toArray();
let odds = list.where(x => x % 2 == 1).toArray();

Ordering a list of people:

let people = [{first: "Jason", last: "Bourne"},
    {first: "Gandalf", last: "The Grey"},
    {first: "John", last: "Smith"},
    {first: "Albert", last: "Smith"}];
    
let results = Linq.from(people)
    .orderBy(x => x.last)
    .thenBy(x => x.first)
    .toArray();

Using an inner join:

let users = [{username: "asmith", domain: "north_america"},
    {username: "tmcfarland", domain: "europe"},
    {username: "cdeckard", domain: "north_america"}];
    
let groups = [{user: "ASMITH", groupName: "base_users"},
    {user: "TMCFARLAND", groupName: "admins"},
    {user: "CDECKARD", groupName: "base_users"},
    {user: "CDECKARD", groupName: "testers"}];
    
let results = Linq.from(users).join(groups,
    x => x.username,           // key for 'users'
    x => x.user,               // key for 'groups'
    (outer, inner) =>          // function to generate results
    { 
        return "user: " + outer.username + 
            ", domain: " + outer.domain +
            ", group: " + inner.groupName;
    },
    (x, y) => x.toLowerCase() == y.toLowerCase());    

License

The MIT License (MIT) Copyright (c) 2012 Kurtis Jones

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].