Differentiate between Select() and SelectMany() method in LINQ.

devquora
devquora

Posted On: Feb 22, 2018

 

The Select() and the SelectMany() are both used to produce result values form the sources of data. However, the difference is the result set. On the one hand, the select clause produces one result value for every source value, and the result value is the collection that contains the same number of elements from the query. On the other hand, the SelectMany() produces a single result that keeps a concatenated collection from the query.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    LINQ Interview Questions

    What do you understand by LINQ?

    Language Integrated Query is the collection of standard query operators which adds query facilities into .NET framework..

    LINQ Interview Questions

    What are the three main components of LINQ?

    The three main components of LINQ are:Standard Query Operators: These are the extension methods that form the LINQ p..

    LINQ Interview Questions

    Explain what is select clause and where clause in LINQ?

    Select clause: the select clause selects the interesting aspects of the element by performing a projection on the col..