LINQ is a very powerful tool for querying data. As the majority of functions are built on top of IEnumerable and it, in most cases returns IEnumerable as well, it is very easy to chain multiple functions together. That leaves you with a question: which one should I use, Select.Where or Where.Select?