I have two tables in my database that look like that:
Customer:
C_ID city
--------------
1 Dhaka
2 New york
3 London
Personal_Info:
P_ID C_ID Field value
-------------------------------
1 1 First Name Nasir
2 1 Last Name Uddin
3 2 First Name Jon
4 3 First Name Lee
I need a select result like that:
C_ID = '1':
C_ID Name (First Name + Last Name) City
------------------------------------------
1 Nasir Uddin Dhaka
C_ID = '2':
C_ID Name (First Name + Last Name) City
---------------------------------------------
2 Jon New york
How would the corresponding Linq query look like?
Thanks
Nahid
Following a previous answer such as Linq to Sql: Multiple left outer joins you can see the structure for solving this eg something like:
Obviously if you want all records then remove the restriction on C_ID = 2