Hi Sudip_inn,
To join you can use LINQ query as below:
class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
class Pet
{
public string Name { get; set; }
public Person Owner { get; set; }
}
Simple inner join.
var query = from person in people
join pet in pets on person equals pet.Owner
select new {
OwnerName = person.FirstName,
PetName = pet.Name };
}
Best Regards,
Bob
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to
MSDN Support, feel free to contact MSDNFSF@microsoft.com.