LINQ in C#.Net made easy! - PART 1 | Method Based Syntax | Query Based Syntax | Codelligent

Sdílet
Vložit
  • čas přidán 10. 05. 2024
  • This is the FIRST video of our LINQ in C#.Net series.
    In this video you will learn the below topics with the help of simple code examples:
    00:00 - Intro
    00:59 - Introduction to LINQ
    02:33 - Method based Syntax & Query based Syntax
    05:07 - Select Operator
    16:22 - Where Operator
    To be continued...
    If you found this video helpful don’t forget to hit the Like button!
    If you wish to join us for future learning, do Subscribe this channel and hit the Bell icon to get the future video notifications!
    #LINQ #DotNet
    -----------------------------------------------------------------------------------------
    We believe in - "Knowledge increases by sharing!!"
    Who are we?
    We are a bunch of IT professionals who love to teach apart from our regular coding work! 👬👫
    Why this Channel?
    In our career, we have noticed that many new programmers get confused while coding, even though they are aware of that concept. We help them understand the concept in our office. 🤗
    So, we thought why not share these concepts in the same easy to understand way to the whole world.
    Let every one who is starting their coding journey get to learn and become a better programmer! 😊
    We have taught many people offline, and now trying to make an online presence to help wider audience. 💖
    Let's Code!
    #LoveForCoding #LoveForTeaching #Codelligent #LetsCode #India
    -----------------------------------------------------------------------------------------
    Intro music credit: www.zapsplat.com
    Intro background image credit: www.freepik.com

Komentáře • 23

  • @zdkcy2510
    @zdkcy2510 Před 4 lety +4

    Nice Tutorial! I look forward in finishing your LINQ video tutorial! Many Thanks! Good Luck!

    • @CODELLIGENT
      @CODELLIGENT  Před 4 lety

      Thanks a lot for your humble words.
      Since this topic is little big, I have split it into multiple videos. :)
      Next Video : czcams.com/video/Ftn9zYygBDw/video.html
      Don't forget to subscribe the channel for future videos.. :)

  • @SamSung-bi6tf
    @SamSung-bi6tf Před 4 lety +8

    I love it! Simple but meaningful! I hope you will have a Real World Project Online Tutorial covering all C#, Linq, Entity Framework, ASP.Net Core Razor/Blazor! More Power and More Subscribers! Thanks A lot!

  • @jcwing4387
    @jcwing4387 Před 4 lety +3

    Your work is highly appreciated! God Bless and more Knowledge! Thanks a lot!

  • @GurtMan100
    @GurtMan100 Před 2 lety +1

    You speak so clearly, and the pacing is really good. Not too slow, not too fast. It was really easy to follow along and BIG props for covering both extension and query syntax. Amazing tutorial, thank you!

    • @CODELLIGENT
      @CODELLIGENT  Před 2 lety

      Thanks a lot for such encouraging words! Glad you liked the video. 😊

  • @cwergsen5640
    @cwergsen5640 Před 2 lety +2

    You helped me a lot with this serie of LINQ. Really helpful, thank you very much!

  • @mikinpatel2349
    @mikinpatel2349 Před 2 lety +2

    This guy , I loved the way you explain it.
    another thing you did not have to tell us to suscribe. After completing video , I have to do it. :)

    • @arunmandal7021
      @arunmandal7021 Před 2 lety +1

      agree !!

    • @CODELLIGENT
      @CODELLIGENT  Před 2 lety +1

      Thanks a lot for such encouraging words!
      We are coming up with many more videos shortly. 😊

  • @Rahulsingh-rm4iz
    @Rahulsingh-rm4iz Před rokem

    bro you are good in that please make more videos about dotnet if it ispossible for you

  • @gio_hdz
    @gio_hdz Před 2 lety

    Link to project?

  • @LuigiZambetti
    @LuigiZambetti Před 3 lety

    Do you make a playlist also for Blazor in the future?

  • @ashu3769
    @ashu3769 Před rokem

    Bhai video quality badhao

  • @OnoderaMyGirl
    @OnoderaMyGirl Před měsícem

    t.y

  • @linguafranca7834
    @linguafranca7834 Před rokem

    Someone please tell how to convert this below query method into method syntax.?
    Var get=(from u in db1
    Where u. Roleid==3 && u.city=="London"
    Order by u. Userid desennding
    Select u). To list();

    • @jacobh.483
      @jacobh.483 Před rokem

      var get = db.where(u => u.RoleId == 3 && u.city == "london").OrderByDesc(q => q.userId).ToList();

    • @antinomy5dsbruno
      @antinomy5dsbruno Před 10 dny

      I guest descending. And it seems to sql sysyntax not linq, claude say. var get = db1.Users
      .Where(u => u.RoleId == 3 && u.City == "London")
      .OrderByDescending(u => u.UserId)
      .Select(u => u)
      .ToList();