Enumerable.SelectMany(Of TSource, TCollection, TResult) Method (IEnumerable(Of TSource), Func(Of TSource, IEnumerable(Of TCollection)), Func(Of TSource, TCollection, TResult))
Projects each element of a sequence to an IEnumerable(Of T), flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein.
Assembly: System.Core (in System.Core.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function SelectMany(Of TSource, TCollection, TResult) ( _ source As IEnumerable(Of TSource), _ collectionSelector As Func(Of TSource, IEnumerable(Of TCollection)), _ resultSelector As Func(Of TSource, TCollection, TResult) _ ) As IEnumerable(Of TResult) 'Usage Dim source As IEnumerable(Of TSource) Dim collectionSelector As Func(Of TSource, IEnumerable(Of TCollection)) Dim resultSelector As Func(Of TSource, TCollection, TResult) Dim returnValue As IEnumerable(Of TResult) returnValue = source.SelectMany(collectionSelector, _ resultSelector)
Type Parameters
- TSource
The type of the elements of source.
- TCollection
The type of the intermediate elements collected by collectionSelector.
- TResult
The type of the elements of the resulting sequence.
Parameters
- source
- Type: System.Collections.Generic.IEnumerable(Of TSource)
A sequence of values to project.
- collectionSelector
- Type: System.Func(Of TSource, IEnumerable(Of TCollection))
A transform function to apply to each element of the input sequence.
- resultSelector
- Type: System.Func(Of TSource, TCollection, TResult)
A transform function to apply to each element of the intermediate sequence.
Return Value
Type: System.Collections.Generic.IEnumerable(Of TResult)An IEnumerable(Of T) whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of source and then mapping each of those sequence elements and their corresponding source element to a result element.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable(Of TSource). When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).| Exception | Condition |
|---|---|
| ArgumentNullException | source or collectionSelector or resultSelector is Nothing. |
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its GetEnumerator method directly or by using foreach in Visual C# or For Each in Visual Basic.
The SelectMany(Of TSource, TCollection, TResult)(IEnumerable(Of TSource), Func(Of TSource, IEnumerable(Of TCollection)), Func(Of TSource, TCollection, TResult)) method is useful when you have to keep the elements of source in scope for query logic that occurs after the call to SelectMany(Of TSource, TCollection, TResult)(IEnumerable(Of TSource), Func(Of TSource, IEnumerable(Of TCollection)), Func(Of TSource, TCollection, TResult)). See the Example section for a code example. If there is a bidirectional relationship between objects of type TSource and objects of type TCollection, that is, if an object of type TCollection provides a property to retrieve the TSource object that produced it, you do not need this overload of SelectMany(Of TSource, TCollection, TResult)(IEnumerable(Of TSource), Func(Of TSource, IEnumerable(Of TCollection)), Func(Of TSource, TCollection, TResult)). Instead, you can use SelectMany(Of TSource, TResult)(IEnumerable(Of TSource), Func(Of TSource, IEnumerable(Of TResult))) and navigate back to the TSource object through the TCollection object.
In query expression syntax, each from clause (Visual C#) or From clause (Visual Basic) after the initial one translates to an invocation of SelectMany.
The following code example demonstrates how to use SelectMany(Of TSource, TCollection, TResult)(IEnumerable(Of TSource), Func(Of TSource, IEnumerable(Of TCollection)), Func(Of TSource, TCollection, TResult)) to perform a one-to-many projection over an array and use a result selector function to keep each corresponding element from the source sequence in scope for the final call to Select.
Structure PetOwner Public Name As String Public Pets() As String End Structure Sub SelectManyEx3() ' Create an array of PetOwner objects. Dim petOwners() As PetOwner = _ {New PetOwner With _ {.Name = "Higa", .Pets = New String() {"Scruffy", "Sam"}}, _ New PetOwner With _ {.Name = "Ashkenazi", .Pets = New String() {"Walker", "Sugar"}}, _ New PetOwner With _ {.Name = "Price", .Pets = New String() {"Scratches", "Diesel"}}, _ New PetOwner With _ {.Name = "Hines", .Pets = New String() {"Dusty"}}} ' Project an anonymous type that consists of ' the owner's name and the pet's name (string). Dim query = _ petOwners _ .SelectMany( _ Function(petOwner) petOwner.Pets, _ Function(petOwner, petName) New With {petOwner, petName}) _ .Where(Function(ownerAndPet) ownerAndPet.petName.StartsWith("S")) _ .Select(Function(ownerAndPet) _ New With {.Owner = ownerAndPet.petOwner.Name, _ .Pet = ownerAndPet.petName _ }) Dim output As New System.Text.StringBuilder For Each obj In query output.AppendLine(String.Format("Owner={0}, Pet={1}", obj.Owner, obj.Pet)) Next ' Display the output. MsgBox(output.ToString()) End Sub ' This code produces the following output: ' ' Owner=Higa, Pet=Scruffy ' Owner=Higa, Pet=Sam ' Owner=Ashkenazi, Pet=Sugar ' Owner=Price, Pet=Scratches
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.