Collection Linq

Linq SelectMany Multiple Columns

The SelectMany operator creates a one-to-many output projection sequence over an input sequence. SelectMany will return 0 or more output elements for every input element.

We’ll need some classses which have some properies. In the posts on LINQ we take the following collections for tutorial

 

Create the following classes:

 

We can create a join with the SelectMany operator to see books’ name with authors . Consider the following query:

 

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.