Full outer join two different structures - LINQ
Hello, is it possible to do following?
I simply need to include both a and b if the other one is null as well as match the two together
1 Reply
u would do that with an left outer join, as far as i can see thats done with a group join combined with an select many
https://dotnettutorials.net/lesson/left-outer-join-in-linq/
Dot Net Tutorials
Dot Net Tutorials
LINQ Left Join in C#
In this article, I am going to discuss LINQ Left Outer Join in C# with Examples. The Left Join in C# is also called Left Outer Join in LINQ.