Thank you very much !!! You video helped me to finally understand LINQ !!!
@CODELLIGENT Жыл бұрын
Glad it helped!
@zdkcy25104 жыл бұрын
Thanks! Thanks! Thanks! and Many Thanks! I hope that you are in Best of Health!
@CODELLIGENT4 жыл бұрын
Thanks a lottt.. Yes I am very much fine. Hope the same with you. :)
@kimicheng56112 жыл бұрын
(1) inner join = join non-matching keys will be dropped e.g. Max --> {Thomas, Luise} (2) group join = join + into non-matching keys will be kept in the key list (Ex. Rohan in 22:58) e.g. Max --> {Thomas, Luise} Rohan --> {} (3) left join = join + into + DefaultIfEmpty() non-matching keys will be kept in the key list + an assigned value for every non-matching key e.g.. Max --> {Thomas, Luise} Rohan --> {} After using DefaultIfEmpty() Max --> {Thomas, Luise} Rohan --> Null After using null? "No Students" : students.Name Max --> {Thomas, Luise} Rohan --> "No students" I can be wrong it's just my understanding after watching this video
@psychologically_shaken3 жыл бұрын
You are a lifesaver! Thanks so much
@CODELLIGENT3 жыл бұрын
Glad it was useful. 😊
@fonskeee Жыл бұрын
When using the method linq for the left outer join it is GroupBy instead of join, otherwhise the compiler want recognize the DefaultIfEmpty() method.
@robimegu37122 жыл бұрын
You helped me a lot! Thank you so much!
@CODELLIGENT2 жыл бұрын
Glad I could help!
@akatwiggy2 жыл бұрын
Helped a lot! Thanks!
@CODELLIGENT2 жыл бұрын
You're welcome! 😇
@thechrisgreen2 жыл бұрын
Is there a way to select all the fields in the join without actually listing them all out manually? Something like SELECT * in SQL.
@bunnyworld53994 жыл бұрын
Hi codelligent . Ur Awesome.. clear explanation. U won my subscription. Keep do it
@CODELLIGENT4 жыл бұрын
Thanks for the sub! 😊
@Tyronekong Жыл бұрын
Great video thank you.
@CODELLIGENT Жыл бұрын
Glad you liked it! 😊
@AfrikanBerry3 жыл бұрын
Thank you alot...please keep making the vids...
@sandeepreddy4752 жыл бұрын
Keep up the good work..!
@CODELLIGENT2 жыл бұрын
Thanks a lot..
@jaysinghsolanki70943 жыл бұрын
how to use joins in web api entity framework ?
@CODELLIGENT3 жыл бұрын
LINQ joins work the same way for general Lists or on List of entities. The same concept/syntax you can apply there. Only difference is you will be iterating through an object type (depending on your entity), and when you want to put some conditions inside, you will be doing it using the entity's properties. 😊
@jaysinghsolanki70943 жыл бұрын
@@CODELLIGENT if possible can you please upload a video or contact me at jaysinghsolanki65@gmail.com i really need to learn this.