vote up 2 vote down star

Hi,

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.

Thanks in advance.

flag

3 Answers

vote up 6 vote down check

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);
link|flag
Thanks, this is one very clear and explanatory. – Aaron Jun 6 at 5:35
vote up 2 vote down

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.

link|flag
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 ? – Aaron Jun 6 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 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 at 5:02
Thanks, well actually yeah the examples were kinda confusing tho :) but thanks again for trying to help me. – Aaron Jun 6 at 5:22
vote up 1 vote down

I understand SelectMany to work like an join shortcut.

So you can:

var orders = customers
             .Where(c => c.CustomerName == "Acme")
             .SelectMany(c => c.Orders);
link|flag

Your Answer

Get an OpenID
or

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