Tag: Development

Community

LINQ Outer Joins

One commonly used feature of Language-Integrated Query (LINQ) is the facility to combine two sequences of related data using joins. The standard join operation provides an inner join but with a minor modification can be changed to give a left outer join.

Community

Sequences in FSharp

(Alok Pandey) A sequence represents an ordered series of elements of the same type. Sequences are important when we work with large amounts of data. It is also known as a sequence expression. It is very similar to Lists – except only one element of sequence can be exist in memory at a time. Sequence

Community

Continuation Tasks

The eleventh part of the Parallel Programming in .NET tutorial considers the use of continuation tasks. These are parallel tasks that start automatically when one or more other tasks complete, allowing a chain of dependent tasks to be executed correctly.