display two tables data in a single gridvew using asp.net
Not for all columns Some columns only,
PLZ GIVE ME Example,
I am trying using LINQ but not showing the gridview data,
<html>
<head runat="server">
</head>
<Body>
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</Body>
</html>
.CS
devdbDataContext dc = new devdbDataContext();
GridView1.DataSource = from c in dc.CONSUMERs join t in dc.TagTables on c.Party_Dim_Key equals t.ConsumerId select new { c.Customer_First_Nm, c.Customer_Last_Nm, t.PhoneNumber, t.Tag_tapped_Date_and_Time };