Hi,
I have two tables in entity model T1 and T2 . Both Tables have data.
I am able to fetch data from table T1.
Here is my code
var
q1 = contxt.T1.Select(x => x.Emp_id).ToList();
var
q1 = contxt.T2.Select(x => x.Customer_Id).ToList();
I am not getting data from 2nd table T2.
Can you please help .
Thanks in advance to all viewers