How to show data in gridview from multiple tables using LINQ
Dear FriendsI 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