Advanced C# - LINQ Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ก.พ. 2025

ความคิดเห็น • 59

  • @GavinLon
    @GavinLon ปีที่แล้ว +54

    In this course we look in detail at a set of technologies named LINQ (Language Integrated Query) using the C# language. LINQ is a Microsoft .NET technology that adds querying capability to .NET. LINQ can be likened to SQL but the functionality is executed at a higher level of abstraction. It supports data retrieval from heterogeneous data sources, where queries can be executed directly on for e.g. data collections from within your .NET code. This is a very powerful technology that in my opinion every .NET developer should learn. A special thank you to FreeCodeCamp for sharing this course on the FreeCodeCamp community TH-cam channel. I hope you enjoy this course and benefit from it.

    • @Alex-yr1jx
      @Alex-yr1jx ปีที่แล้ว +1

      You’re a legend Gavin, thank you

  • @vibes992000
    @vibes992000 10 หลายเดือนก่อน +3

    one of the best tutorials for LINQ. Even as a senior softawre engineer it helped me to recall the concepts.

  • @robinheyer708
    @robinheyer708 ปีที่แล้ว +12

    2:31:41 The Enumerable.Empty() method returns an empty sequence of type TResult. It is useful when you need to return an empty sequence of a specific type without creating an instance of a collection.
    Instantiating an empty list using the List constructor creates an instance of the List class in memory. If you are dealing with a high throughput application, this could have a noticeable impact on performance. Using Enumerable.Empty() does not create an object per call and therefore puts less load on the garbage collector.

  • @Ti_Nspire
    @Ti_Nspire ปีที่แล้ว +23

    Beautiful explaination. I use LINQ statements every day for work and this was not explained nearly as in depth during my bachelor's. Thank you

  • @usmanmalik-xk5vi
    @usmanmalik-xk5vi 9 หลายเดือนก่อน

    Excellent resource, The guy is literally breaking examples from Microsoft docs in a much simpler way. Everything you need to know about LINQ is here and that goes for partial entity framework core as well as it heavily uses LINQ about 80% of the time when you are done creating entities and are just working with retrieving them

  • @rahulsbhatt
    @rahulsbhatt ปีที่แล้ว +7

    Excellent course!
    Few months back I had watched his advanced generics series, truly was something I haven't seen on TH-cam before.
    Thanks free code camp and Gavin for this masterpiece 🙏

  • @abdulazeezaare1453
    @abdulazeezaare1453 ปีที่แล้ว +3

    I am so excited to be part of this class, thanks

  • @bogdanivchenko3723
    @bogdanivchenko3723 ปีที่แล้ว +1

    Inner join query: 1:06:28 left outer join query: 1:16:44

  • @VahagCharvadaryan
    @VahagCharvadaryan ปีที่แล้ว +1

    Perfect! Just perfect! Was worth all the 3 hours of it (although I spent only 2 using INTED))))

  • @FadiKraiem
    @FadiKraiem 5 หลายเดือนก่อน

    I appreciate this course , a very good effort and clear explanation , a treasure in youtube

  • @Bhupatii
    @Bhupatii 8 หลายเดือนก่อน +1

    Enjoyed whole tutorial 💡🎉

  • @dp-bhatt
    @dp-bhatt ปีที่แล้ว +2

    This is really a great tutorial on LINQ! ❤❤❤

  • @vijayakumar1591
    @vijayakumar1591 10 หลายเดือนก่อน

    Nice! It was a very useful walkthrough code session

  • @sbabymoney3204
    @sbabymoney3204 9 หลายเดือนก่อน

    Roland never disappoints!

  • @deepakbhagat811
    @deepakbhagat811 ปีที่แล้ว +1

    best linq tutorial 😌

  • @mustafarahimfandy1660
    @mustafarahimfandy1660 ปีที่แล้ว +5

    All you need to know about this framework DataTable , DataRow , DataColumn , DataRelation , and Linq

    • @RaZziaN1
      @RaZziaN1 ปีที่แล้ว +2

      no, u need to know also, authorization attribs, regex, files manipulation, encoding, cqrs approach, ddd, translated enumerations

  • @b_educate5280
    @b_educate5280 6 หลายเดือนก่อน

    Big thanks for useful tutorial.

  • @chosenireri8443
    @chosenireri8443 ปีที่แล้ว +2

    Amazing content

  • @yihu-t8p
    @yihu-t8p ปีที่แล้ว +1

    best linq content

  • @lex-i8b
    @lex-i8b 23 วันที่ผ่านมา

    Absolute legend!

  • @azym_equinox
    @azym_equinox 11 หลายเดือนก่อน +1

    great

  • @naderelfeel3858
    @naderelfeel3858 5 หลายเดือนก่อน

    That's Just Great❤

  • @MichaelMo-L
    @MichaelMo-L ปีที่แล้ว +1

    Could you please put in a playlist

  • @technicaltechnmofficial2513
    @technicaltechnmofficial2513 ปีที่แล้ว +1

    Could you please do a advanced tutorial video on android application development using KOTLIN

  • @ahmetHoca733
    @ahmetHoca733 11 หลายเดือนก่อน

    Thanks for the video, i guess your success..

  • @loool21
    @loool21 ปีที่แล้ว +1

    Could you please do a full PHP / Laravel course under 2 hours for beginners?

  • @GnomeFire
    @GnomeFire ปีที่แล้ว +1

    I'm only in the first lesson, but I'm a bit confused as to why we are adding Employees inside of the GetEmployees function (same with Departments). Wouldn't it be better practice to do that somewhere else in the code so it doesn't run every time we call the function?

    • @robinheyer708
      @robinheyer708 ปีที่แล้ว +1

      I guess it's to simulate a real-life experience where you wouldn't hardcode the list of employees directly into your application but you would keep them in some kind of file or database and make a call to fill the temporary list in your app. Although, essentially, we are actually still hardcoding it here like you noticed ;)

  • @activex7327
    @activex7327 ปีที่แล้ว +1

    Code readability is a matter of preference and is context specific. In your example, I could argue either way for LINQ syntax vs Query syntax. Readability is context specific because it depends on the complexity of your data queries. If you want to do simple one line filter, the Query syntax is too verbose where Method syntax is simple and concise. I would be curious who said that Query syntax over Method syntax is preferable ... Because it is a bad recommendation.

  • @Ertugrul.Yilmaz
    @Ertugrul.Yilmaz ปีที่แล้ว +9

    Is there anyone who watch this video with normal speed?

    • @bojohannesen4352
      @bojohannesen4352 8 หลายเดือนก่อน +1

      Of course. Plenty of time to take notes and appreciate this excellent, free content.

    • @FadiKraiem
      @FadiKraiem 5 หลายเดือนก่อน +1

      ​@@bojohannesen4352 i confirm this is a treasure even though it is a lil bit fast to beginners

  • @usmanmarkaz
    @usmanmarkaz ปีที่แล้ว +3

    Sir plz upload tutorials and some Projects in React Native from basic to advance

  • @shuvbhowmickbestin
    @shuvbhowmickbestin ปีที่แล้ว +1

    Visual Studio for mac looks more like a text editor than an actual IDE.

  • @jasonk6234
    @jasonk6234 ปีที่แล้ว +1

    He speaks very clearly but the echoing is very disruptive lol

  • @velovo2988
    @velovo2988 ปีที่แล้ว

    Thanks!

  • @sin7wu
    @sin7wu ปีที่แล้ว

    please do a video bout TCL?

  • @Mastermindshares
    @Mastermindshares ปีที่แล้ว

    Can u make video on Extension method linq query approach .
    It would be helpful

  • @heysisteronion
    @heysisteronion 3 วันที่ผ่านมา

    great!

  • @mrjoe64-dz4pr
    @mrjoe64-dz4pr ปีที่แล้ว

    Make video in Adobe Photoshop plzz.

  • @animeprofiles2077
    @animeprofiles2077 ปีที่แล้ว +7

    This was much needed Lmao

  • @Sad_Chief
    @Sad_Chief 7 หลายเดือนก่อน +1

    10:00

  • @JoaoBatista-ou3tf
    @JoaoBatista-ou3tf ปีที่แล้ว

    Great!

  • @soumadip_banerjee
    @soumadip_banerjee ปีที่แล้ว +2

  • @rishudev6826
    @rishudev6826 11 หลายเดือนก่อน

    Hahah every time he says Func... Definitely sounds like something more obscene

  • @raju.gunawan
    @raju.gunawan ปีที่แล้ว

    👍👍👍

  • @HoustonMary-e7m
    @HoustonMary-e7m 4 หลายเดือนก่อน

    Jan Isle

  • @monoto8272
    @monoto8272 ปีที่แล้ว

    Datepart() in linq anyone?

  • @12crenshaw
    @12crenshaw ปีที่แล้ว +6

    Why are you obliged to have a cap and be middle aged to programm in c#?

  • @hue_sane
    @hue_sane ปีที่แล้ว +1

    ☝️

  • @Johanthegnarler
    @Johanthegnarler 3 หลายเดือนก่อน

    Wild, .NET peeps still using ORM? Good video though.

  • @cliff_hewitt
    @cliff_hewitt 7 หลายเดือนก่อน

    This guy's jagged narration style is very difficult to follow. Bleh. His coding style also lacks functions, a coding pattern that would be really helpful when dealing with different functionalities in the language.

  • @emeverse
    @emeverse ปีที่แล้ว

    First to watch and comment

  • @zlaza314
    @zlaza314 ปีที่แล้ว

    Hello, i send you a e-mail

  • @arp637
    @arp637 ปีที่แล้ว

    First