You must Sign In to post a response.
  • Category: Visual Studio

    How to show data in gridview from multiple tables using LINQ

    Dear Friends

    I want to show data from multiple tables in grid view using VB.NET and LINQ

    I am using qurty right now

    i.e.
    Dim T = From G In DC.GetTable(Of MATERIALMASTER)() Where G.MATCODE = txtMatCode.Text And G.MatName = txtMatName.Text
    DGV1.DataSource = T

    Regards
  • #746405
    Hi Manoj,

    Try this example:

    http://msdn.microsoft.com/en-us/vstudio/bb738039#selmanymult


  • Sign In to post your comments