by Yogesh | Jun 28, 2016 | LINQ Tutorial
Ordering Operators in linq C# These operators return same number of output elements as input elements in sorted form. OrderBy This operator sort input elements as per given key. For example we have a employee table which have a salary field now we want to get employee...
by Yogesh | Jun 25, 2016 | LINQ Tutorial
SelectMany query operator produces a variable number of output elements for each input element. In simple words if any collection have collection as an its element then using selectmany we can read that child connection item. Example using System; using...