I have to Records Set as a C# lists for two different Classes:
class Foo{
string A1;
string B1;
string A2;
string B2;
}
class Faa{
string A;
string B;
string C;
}
The main idea is to Join Faa and Foo with booth (A, B) and the result will be (A1,B1,C1,A2,B2,C2) The C1 and C2 are the respective equivalent of couple (A1,B1) and (A2,B2) in the Faa records.
I would like to do this join using Linq to Object.
Thanks