# LINQ ## LINQ to Objects The term **LINQ to Objects** refers to the use of LINQ queries with any `IEnumerable` or `IEnumerable` collection directly, without the use of an intermediate LINQ provider or API such as [LINQ to SQL](https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/linq/) or [LINQ to XML](https://docs.microsoft.com/en-us/dotnet/standard/linq/linq-xml-overview). LINQ to Objects will be used when any `IEnumerable` is specified as the source, unless a more specialized provider is available. ### Query Expressions All query expressions are required to begin with a `from` clause, which specifies the source of the query. The final part of the query is a `select` (or `group`) clause. This determines the final output of the query and its system type. ```cs // query expression var result = from item in enumerable select item; // where clause var result = from item in enumerable where condition select item; // ordering var result = from item in enumerable orderby item.property select item; // ordered IEnumerable // let clause, assign expression to variable to avoid re-evaluation on each cycle var result = from item in enumerable let tmp = ... // BEWARE: compiled code has a lot of overhead to satisfy let clause // grouping (difficult to re-implement to obtain better performance) var result = from item in enumerable group item by item.property; // returns IEnumerable> ``` ### How Query Expressions Expand The compiler converts all query expressions into one or more method calls. Once it has done that, the LINQ provider is selected through exactly the same mechanisms that C# uses for any other method call. The compiler does not have any built-in concept of what constitutes a LINQ provider. ```cs // expanded query expression var result = Enumerable.Where(item => condition).Select(item => item); ``` The `Where` and `Select` methods are examples of LINQ operators. A LINQ operator is nothing more than a method that conforms to one of the standard patterns. ### Methods on `Enumerable` or `IEnumerable` ```cs Enumerable.Range(int start, int end); // IEnumerable of values between start & end IEnumerable.Select(Func selector); // map IEnumerable.Where(Func predicate); // filter IEnumerable.FirstOrDefault(); // first element of IEnumerable or default(T) if empty IEnumerable.FirstOrDefault(T default); // specify returned default IEnumerable.FirstOrDefault(Func predicate); // first element to match predicate or default(T) // same for LastOrDefault & SingleOrDefault IEnumerable.Chunk(size); // chunk an enumerable into slices of a fixed size // T must implement IComparable IEnumerable.Max(); IEnumerable.Min(); // allow finding maximal or minimal elements using a key selector IEnumerable.MaxBy(Func selector); IEnumerable.MinBy(Func selector); IEnumerable.All(Func predicate); // check if condition is true for all elements IEnumerable.Any(Func predicate); // check if condition is true for at least one element IEnumerable.Concat(IEnumerable enumerable); // Applies a specified function to the corresponding elements of two sequences, producing a sequence of the results. IEnumerable.Zip(IEnumerable enumerable, Func func); IEnumerable.Zip(IEnumerable enumerable); // Produces a sequence of tuples with elements from the two specified sequences. ``` > **Note**: `Enumerable` provides a set of `static` methods for querying objects that implement `IEnumerable`. Most methods are extensions of `IEnumerable` ```cs Enumerable.Method(IEnumerable source, args); // if extension method same as IEnumerable.Method(args); ```