I saw posts like below which are really hard for me to understand. So I am re-posting it. Sorry if someone feels it's duplicate. I have just simple requirements
C# Joins/Where with Linq and Lambda
I have a class like this
public class Person
{
public int Id{get;set;}
public string Name{get;set;}
public string MailingAddress{get;set;}
}
I have a method like below
public IList<Person> GetNames(IList<int> ids)
This will give me List of persons like below
1 "Sam" ""
2 "Dev" ""
4 "Hummy"
I have another method like below
public IList<Person> GetMailingAddress(IList<int> ids)
This will give me List of persons like below
1 "" "ABC"
6 "" "TTT"
2 "" "XYZ"
Now I need to merge results of two methods so that I can have my final result like this
1 "Sam" "ABC"
2 "Dev" "XYZ"
UPDATE : I am sorry I didnot clearly give my test data. Please see above my test data
I'm slightly confused by what your methods are returning, if you need to combine the two results to get full
Person
objects then there are two ways you might be able to get things working.If you can rely on the same number of objects being returned in the same order, you can try:
If you can't rely on both of those conditions, you can use a
Join
:Even though you have those two options, there's a third and better option if you have control over the code that actually gets the objects from the data source. If you know you need those two pieces of data, you should create a single method that queries the datasource a single time to get all of the data rather than querying once per piece of data.
You can solve it with Enumerable.Zip and Ordering the Data before:
Perform join on those two methods returning values by Lambda style Linq syntax:
Perform join on those two methods returning values by Sql-style Linq syntax:
Note:Where GetName() and GetMailingAddress() method returns list of result set.
Enumerable.Zip definitely will solve your issue.