Coding Grounds
Compilation of different programming projects I amuse myself with.
Showing posts with label
Linq
.
Show all posts
Showing posts with label
Linq
.
Show all posts
Thursday, 1 February 2024
Creating a data table from IEnumerable of T and defining column order explicitly in C#
›
This article shows code how you can create a DataTable from a collection of T (IEnumerable<T>) and defining explicitly the column orde...
Tuesday, 31 December 2019
Aggregate in Typescript
›
I have implemented Aggregate method in my Linq library written for Typescript. if (!Array.prototype.Aggregate) { Array.prototype.Aggreg...
1 comment:
DistinctBy operator written in Typescript
›
I am extended my Linq library for Typescript with many more methods! Here is my implementation of DistinctBy. if (!Array.prototype.Disti...
1 comment:
Implementing OfType
in Typescript
›
I am working on my Linq library for Typescript and wanted to implement OfType . Turns out, this is hard because the generic type arguments i...
3 comments:
Monday, 30 December 2019
More methods: Any, All, EnumerableRange, GroupBy for Linq like library written in TypeScript
›
I am extending my TypeScript library written to target Linq like methods, which can be used with Angular 8 and Typescript also. You can fi...
1 comment:
Friday, 27 December 2019
Implementing Linq methods on arrays with Typescript for Angular 8
›
This article will look into implementing Linq methods on array with Typescript for Angular 8. First off, I have created a repo for this ar...
Sunday, 10 November 2019
Implementing projection in Javascript
›
Github page for source code in this article: https://github.com/toreaurstadboss/JsLinqSimpleProjection https://www.npmjs.com/package/jsli...
›
Home
View web version