I am trying to understand more about linq, for example, if I want to implement a Select I will implement like this
public static IEnumerable Selec
Take a look at this. I think you'll find it very useful. Basically, Jon Skeet re-implements everything in Linq as a learning exercise. Very informative.
The second part talks about implementing Where... and so on till parts that describes OrderBy.