This Is the Place for LINQ in Modern .NET Design

Sdílet
Vložit
  • čas přidán 4. 01. 2024
  • Become a sponsor to access source code ► / zoranhorvat
    Join Discord server with topics on C# ► codinghelmet.com/go/discord
    Enroll course Beginning Object-Oriented Programming with C# ► codinghelmet.com/go/beginning...
    LINQ has been around for sixteen years already. That means it's been here forever. And still, some C# programmers have trouble seeing the place LINQ should take in their designs. That place exists. LINQ is more than just a fancy syntax that takes the loops and ifs away.
    In this video, we are putting LINQ in the context of an application that accepts data from a data source and deserializes them into objects and collections or sequences of objects. That is the setup in which LINQ takes over when it comes to processing sequences of objects and applying the domain rules to them.
    By clearly separating the data and the iterator on one side and specifications and strategies on the other, LINQ naturally comes in between, where it can bridge the gap between the definitions of objects and transformations.
    ✅🔔 Become a patron ► / zoranhorvat
    ✅🔔 Subscribe ► / @zoran-horvat
    ⭐ Learn more from video courses:
    Beginning Object-oriented Programming with C# ► codinghelmet.com/go/beginning...
    ⭐ Collections and Generics in C# ► codinghelmet.com/go/collectio...
    ⭐ Making Your C# Code More Object-oriented ► codinghelmet.com/go/making-yo...
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    ⭐ CONNECT WITH ME 📱👨
    🌐Become a patron ► / zoranhorvat
    🌐Buy me a Coffee ► ko-fi.com/zoranhorvat
    🗳 Pluralsight Courses ► codinghelmet.com/go/pluralsight
    📸 Udemy Courses ► codinghelmet.com/go/udemy
    📸 Join me on Twitter ► / zoranh75
    🌐 Read my Articles ► codinghelmet.com/articles
    📸 Join me on LinkedIn ► / zoran-horvat
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    👨 About Me 👨
    Hi, I’m Zoran, I have more than 20 years of experience as a software developer, architect, team lead, and more. I have been programming in C# since its inception in the early 2000s. Since 2017 I have started publishing professional video courses at Pluralsight and Udemy, and by this point, there are over 100 hours of the highest-quality videos you can watch on those platforms. On my CZcams channel, you can find shorter video forms focused on clarifying practical issues in coding, design, and architecture of .NET applications.❤️
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    ⚡️RIGHT NOTICE:
    The Copyright Laws of the United States recognize a “fair use” of copyrighted content. Section 107 of the U.S. Copyright Act states: “Notwithstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work, including such use by reproduction in copies or phono records or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright." This video and our CZcams channel, in general, may contain certain copyrighted works that were not specifically authorized to be used by the copyright holder(s) but which we believe in good faith are protected by federal law and the Fair use doctrine for one or more of the reasons noted above.
    #linq #csharp #dotnet
  • Věda a technologie

Komentáře • 18

  • @_IGORzysko
    @_IGORzysko Před 5 měsíci +1

    Impressive!
    You went very smoothly from LINQ being just a "tool" for operating on data to functional programming.
    It's very helpful to look at LINQ this way because indeed it is a powerful fundament of specification pattern 🚀

  • @tomiczdarko
    @tomiczdarko Před 3 měsíci +1

    Amazing channel. It's really nice to see our people on youtube.

  • @bogdanpavlovic3456
    @bogdanpavlovic3456 Před 5 měsíci +1

    Zoki srecna Nova! Da si mi ziv i zdrav! i ove godine da odradis prvu knjigu na srpskom i engleskom jeziku! Za stampariju cemo se snaci :) Ziveli i svako dobro! 🍺🍻🍺

  • @dzllz
    @dzllz Před 5 měsíci +1

    I love your expressive voice ! Keep it up!

  • @mrbondeah
    @mrbondeah Před 5 měsíci

    Hey! At 4:22 you mention "Watch that video..." - is there a link for it somewhere? Thanks. 👍🏻

    • @zoran-horvat
      @zoran-horvat  Před 5 měsíci +1

      I will add those links to the description, too. In the meanwhile, it should have popped up in the upper right corner during playback.

    • @mrbondeah
      @mrbondeah Před 5 měsíci

      Thank you 😊 (they show up on Android, but not if using Chromecast to my TV).

  • @danilomosurovic6735
    @danilomosurovic6735 Před 5 měsíci

    Pozdrav Zorane. Vaš kurs, Functional C# 10 na Pluralsightu je jedini kojem treba premium subscription. Ostale sam uredno gledao sa basic. Je li to greška ili je to tako zamišljeno?
    Hvala.

    • @zoran-horvat
      @zoran-horvat  Před 5 měsíci

      Ne znam kako Pluralsight organizuje članarinu, ovo je nova informacija za mene.

    • @danilomosurovic6735
      @danilomosurovic6735 Před 5 měsíci +1

      ​@@zoran-horvat Nisam siguran kako izaberu koji ulaze u basic a koji u premium. Baš šteta. Ne znam kako je sa vaše strane, ali što se korisnika tiče, lakše je x puta na udemy-u. Platiš kurs koji te zanima i doviđenja.
      U svakom slučaju hvala na odgovoru, genijalan kontent snimate.

  • @zeeshanazeem5212
    @zeeshanazeem5212 Před 5 měsíci +2

    Where can i get your course for functional programming C#

    • @zoran-horvat
      @zoran-horvat  Před 5 měsíci +5

      My latest course on functional C# is published at Pluralsight: codinghelmet.com/go/functional-csharp

  • @AlexUkrop
    @AlexUkrop Před 5 měsíci

    The Linq problem now is how to support IAsyncEnumerable in the same way as for usual IEnumerable. Yes, there are extensions already that help to use async/await inside and it is enough in many cases but not always. I use Linq forever and do not use loops at all but how about await foreach {} loop in Linq and so on?

    • @zoran-horvat
      @zoran-horvat  Před 5 měsíci

      IAsyncEnumerable is covering a very narrow corner case. I am not sure how important LINQ would be there, let alone that many of the traditional LINQ operators are not even applicable to asynchronous sequences.

    • @PlerbyMcFlerb
      @PlerbyMcFlerb Před 5 měsíci

      ​​@zoran-horvat select and selectmany are trivial to custom implement for it, using yield syntax
      You can also make overloads of selectmany to make it work seamlessly with ienumerable and task, which makes the query syntax a really expressive notation

  • @user-we6wp1ky7f
    @user-we6wp1ky7f Před 5 měsíci

    - Where have all the patterns gone?
    - The girls have picked them, every one😊

    • @zoran-horvat
      @zoran-horvat  Před 5 měsíci

      I thought of adding that to the video but didn't know how to make it look right :)

    • @user-we6wp1ky7f
      @user-we6wp1ky7f Před 5 měsíci +1

      @@zoran-horvat You have good taste in music Zoran).
      Perhaps a musical insert without words, just a melody). But I’m not a video editing specialist and I don’t know how difficult it is to do in terms of time spent.