I\'ve been searching the difference between Select and SelectMany but I haven\'t been able to find a suitable answer. I need to learn the differenc
Select
SelectMany
SelectMany() lets you collapse a multidimensional sequence in a way that would otherwise require a second Select() or loop.
SelectMany()
Select()
More details at this blog post.