Queryable.Concat<TSource> Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menggabungkan dua urutan.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::IQueryable<TSource> ^ Concat(System::Linq::IQueryable<TSource> ^ source1, System::Collections::Generic::IEnumerable<TSource> ^ source2);
public static System.Linq.IQueryable<TSource> Concat<TSource> (this System.Linq.IQueryable<TSource> source1, System.Collections.Generic.IEnumerable<TSource> source2);
static member Concat : System.Linq.IQueryable<'Source> * seq<'Source> -> System.Linq.IQueryable<'Source>
<Extension()>
Public Function Concat(Of TSource) (source1 As IQueryable(Of TSource), source2 As IEnumerable(Of TSource)) As IQueryable(Of TSource)
Jenis parameter
- TSource
Jenis elemen urutan input.
Parameter
- source1
- IQueryable<TSource>
Urutan pertama untuk menggabungkan.
- source2
- IEnumerable<TSource>
Urutan untuk menggabungkan ke urutan pertama.
Mengembalikan
IQueryable<T> Yang berisi elemen yang digabungkan dari dua urutan input.
Pengecualian
source1
atau source2
adalah null
.
Contoh
Contoh kode berikut menunjukkan cara menggunakan Concat<TSource>(IQueryable<TSource>, IEnumerable<TSource>) untuk menggabungkan dua urutan.
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
// This method creates and returns an array of Pet objects.
static Pet[] GetCats()
{
Pet[] cats = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
return cats;
}
// This method creates and returns an array of Pet objects.
static Pet[] GetDogs()
{
Pet[] dogs = { new Pet { Name="Bounder", Age=3 },
new Pet { Name="Snoopy", Age=14 },
new Pet { Name="Fido", Age=9 } };
return dogs;
}
public static void ConcatEx1()
{
Pet[] cats = GetCats();
Pet[] dogs = GetDogs();
// Concatenate a collection of cat names to a
// collection of dog names by using Concat().
IEnumerable<string> query =
cats.AsQueryable()
.Select(cat => cat.Name)
.Concat(dogs.Select(dog => dog.Name));
foreach (string name in query)
Console.WriteLine(name);
}
// This code produces the following output:
//
// Barley
// Boots
// Whiskers
// Bounder
// Snoopy
// Fido
' This method creates and returns an array of Pet objects.
Shared Function GetCats() As Pet()
Dim cats() As Pet = _
{New Pet With {.Name = "Barley", .Age = 8}, _
New Pet With {.Name = "Boots", .Age = 4}, _
New Pet With {.Name = "Whiskers", .Age = 1}}
Return cats
End Function
' This method creates and returns an array of Pet objects.
Shared Function GetDogs() As Pet()
Dim dogs() As Pet = _
{New Pet With {.Name = "Bounder", .Age = 3}, _
New Pet With {.Name = "Snoopy", .Age = 14}, _
New Pet With {.Name = "Fido", .Age = 9}}
Return dogs
End Function
Shared Sub ConcatEx1()
Dim cats() As Pet = GetCats()
Dim dogs() As Pet = GetDogs()
' Concatenate a collection of cat names to a
' collection of dog names by using Concat().
Dim query As IEnumerable(Of String) = _
cats.AsQueryable() _
.Select(Function(cat) cat.Name) _
.Concat(dogs.Select(Function(dog) dog.Name))
For Each name As String In query
MsgBox(name)
Next
End Sub
Structure Pet
Dim Name As String
Dim Age As Integer
End Structure
' This code produces the following output:
'
' Barley
' Boots
' Whiskers
' Bounder
' Snoopy
' Fido
Keterangan
Metode ini Concat<TSource>(IQueryable<TSource>, IEnumerable<TSource>) menghasilkan MethodCallExpression yang mewakili pemanggilan Concat<TSource>(IQueryable<TSource>, IEnumerable<TSource>) dirinya sebagai metode generik yang dibangun. Kemudian meneruskan MethodCallExpression ke CreateQuery<TElement>(Expression) metode dari yang IQueryProvider diwakili oleh Provider properti source1
parameter .
Perilaku kueri yang terjadi sebagai akibat dari menjalankan pohon ekspresi yang mewakili panggilan Concat<TSource>(IQueryable<TSource>, IEnumerable<TSource>) tergantung pada implementasi jenis source1
parameter. Perilaku yang diharapkan adalah bahwa elemen di source2
digabungkan dengan elemen source1
untuk membuat urutan baru.