How to get Data from two table using Join in LIST?
Please tell me how can i get the result using joinmy code is here....
from A in _db.T1
join B in _db.T2 on A.IM_ID equals B.IM_ID
where A.PropertyID == PropertyID
select new { A.IM_ID, B.IM_Rate, A.IM_Code, A.IM_Title }
i want it in LIST but it will not return or if possible to return data in dataset.
Thanks,
Atul Sharma