Lecture overview -- Keyboard shortcut: 'u'  Previous page: How a LINQ Query Operation works -- Keyboard shortcut: 'p'  Next page: The technical basis of LINQ -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home  Page 8 : 11
Object-oriented Programming in C#
An Introduction to LINQ
Deferred Execution

An object of type IEnumerable<T> is not evaluated and expanded before it is traversed, typically in a foreach statement.

LINQ query operators return a linear list of iterators that decorates the data source

The Decorator design pattern

 

Compression and buffering decoration of a FileStream