EDIT
As per the comment you want to join this in one entity called output , so you can do it with the help of anonymous type and join
var data = from c in customer
join p in person
on p.ID equals c.ID
select new
{
PersonName = p.Name,
CustomerName - c.Name
PersonAdd = p.Add
CustomerAdd = c.Add
};
join will work like this
Check for more detail : SQL to LINQ ( Visual Representation )
var data = from c in customer
join p in person
on p.ID equals c.ID
select c;
image presetnation

or
Linq Join on Mutiple columns
var cust = from c in Customers
join p in persons on
new { Name= c.Name, Address= c.Address }
equals
new { Name= p.Name, Address= p.Address }
select c;
Customer? Why do two services return the same entities? Do the services have their own contexts? What is the primary key? What do you mean by output exepected for single entity? – Gert Arnold Nov 21 '12 at 21:38