Using a compound From clause to make a query that returns pairs : From « LINQ « VB.Net






Using a compound From clause to make a query that returns pairs

  


Imports System.IO
Imports System.Reflection
Imports System.Linq
Imports System.Xml.Linq

Public Class MainClass
   Public Shared Sub Main

        Dim numbersA() As Integer = {0, 2, 4, 8, 9}
        Dim numbersB() As Integer = {1, 3, 5, 7, 8}

        Dim pairs = From a In numbersA, b In numbersB _
                    Where a < b _
                    Select a, b

        Console.WriteLine("Pairs where a < b:")
        For Each pair In pairs
            Console.WriteLine(pair.a & " is less than " & pair.b)
        Next

   End Sub


End Class

   
    
  








Related examples in the same category

1.Using compound From clause to select all orders where total is less than 500.00.
2.Using a compound From clause
3.Compound Select From (select from two arrays)