I am a newbie with Linq methods in C#. I was learning Join clause and I think I understand all three types of joins i.e
- Inner join
- Group join
- Left outer join
What I understand about Left Outer Join is that it return all the elements of Left Source Sequence whether there is a matching element in right sequence or not.
Now I have a scenario where I want to perform Left Outer Join and also I want all the elements of Right Source Sequence whether there is a matching element in Left sequence or not.
How can I do this ?