اشتراک‌ها
کتابخانه linq$
$linq is a Javascript version of .NET's Linq to Objects, with some query operations inspired by MoreLinq

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


کتابخانه  linq$
اشتراک‌ها
NET 8 Preview 2. منتشر شد
Microsoft's second preview of .NET 8 is just "a quick follow-up" to Preview 1, highlighted by a couple of improvements to Blazor, for creating web apps in C# instead of JavaScript.
NET 8 Preview 2. منتشر شد