Page 7 : 11
Object-oriented Programming in C#
An Introduction to LINQ
Origin and Rationale
LINQ Concepts
Map, filter, and reduce
Basic LINQ Examples
An overview of some LINQ Query Operators
LINQ Query Operations vs List<T> methods.
How a LINQ Query Operation works
Deferred Execution
The technical basis of LINQ
Query Syntax versus Method Syntax
A Final Example: Sieve of Eratosthenes.
How a LINQ Query Operation works
LINQ Query Operations are
extension methods
in the generic interface
IEnumerable<T>
.
Reproduction of some central query operations.
Using the reproduced query operations.
It is possible to program the fundamental query operations in a simple and straightforward way