Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been searching the difference between those two but I couldn't find actually what I want. I need learn the difference when using LINQ To SQL but they all gave me standard array examples.

Can some one give a LINQ TO SQL Example to show the difference between Select and Select Many.

share|improve this question

6 Answers

up vote 199 down vote accepted

SelectMany flattens queries that return lists of lists. For example

public class PhoneNumber
{
    public string Number { get; set; }
}

public class Person
{
    public IEnumerable<PhoneNumber> PhoneNumbers { get; set; }
}

IEnumerable<Person> people = new List<Person>();

// Select gets a list of lists of phone numbers
IEnumerable<IEnumerable<PhoneNumber>> phoneLists = people.Select(p => p.PhoneNumbers);

// SelectMany flattens it to just a list of phone numbers.
IEnumerable<PhoneNumber> phoneNumbers = people.SelectMany(p => p.PhoneNumbers);
share|improve this answer
16  
Thanks, this is one very clear and explanatory. – Tarik Jun 6 '09 at 5:35
7  
Short, clear and concise. – Oybek Jan 26 '12 at 8:37

SelectMany() lets you collapse a multidimensional sequence in a way that would otherwise require a second Select() or loop.

EDIT: since I'm apparently unable to craft a legal LINQ query when I haven't eaten, I'll defer to this blog post to explain further.

share|improve this answer
But the first one return Enumerables type of Children the second example return type of Parents ? Actually I am little bit confused,would you open it up little bit more ? – Tarik Jun 6 '09 at 4:56
Other way around, actually. The second will completely flatten the hierarchy of enumerables, so that you get Children back. Try the article at the link I added, see if that helps. – Michael Petrotta Jun 6 '09 at 5:02
The first one does not appear to be legal. I think the poster got confused himself. The second one would return an enumerable of parents. – mquander Jun 6 '09 at 5:02
Thanks, well actually yeah the examples were kinda confusing tho :) but thanks again for trying to help me. – Tarik Jun 6 '09 at 5:22

I understand SelectMany to work like an join shortcut.

So you can:

var orders = customers
             .Where(c => c.CustomerName == "Acme")
             .SelectMany(c => c.Orders);
share|improve this answer

There are several overloads to SelectMany. One of them allows you to keep trace of any relationship between parent and children while traversing the hierarchy.

Example: suppose you have the following structure: League -> Teams -> Player

You can easily return a flat collection of player. However you may loss any reference to the team the player is part of.

Fortunately there is an overload for such purpose:

var teamsAndTheirLeagues = 
         from helper in leagues.SelectMany
               ( l => l.Teams
                 , ( league, team ) => new { league, team } )
                      where helper.team.Players.Count > 2 
                           && helper.league.Teams.Count < 10
                           select new 
                                  { LeagueID = helper.league.ID
                                    , Team = helper.team 
                                   };

The previous example is taken from Dan's IK blog:

http://blogs.interknowlogy.com/2008/10/10/use-linqs-selectmany-method-to-flatten-collections/

I strongly recommend you take a look at it.

share|improve this answer

Select is a simple one-to-one projection from source element to a result element. Select- Many is used when there are multiple from clauses in a query expression: each element in the original sequence is used to generate a new sequence.

share|improve this answer

Select many is like cross join operation in SQL where it takes the cross product For example if we have

Set A={a,b,c} Set B={x,y}

Select many can be used to get the following set

{ (x,a) , (x,b) , (x,c) , (y,a) , (y,b) , (y,c) }

Note that here we take the all the possible combinations that can be made from the elements of set A and set B. Here is a LINQ example you can try

  List<string> animals = new List<string>() { "cat", "dog", "donkey" };
  List<int> number = new List<int>() { 10, 20 };

  var mix=number.SelectMany(num => animals, (n, a) => new { n, a });

the mix will have following elements in flat structure like

{(10,cat), (10,dog), (10,donkey), (20,cat), (20,dog), (20,donkey)}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.