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

Поділитися
Вставка
  • Опубліковано 23 лип 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

КОМЕНТАРІ • 23

  • @zdkcy2510
    @zdkcy2510 4 роки тому +4

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

    • @CODELLIGENT
      @CODELLIGENT  4 роки тому

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

  • @SamSung-bi6tf
    @SamSung-bi6tf 4 роки тому +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!

    • @CODELLIGENT
      @CODELLIGENT  4 роки тому +1

      Thanks.. Glad you liked it 😊

  • @jcwing4387
    @jcwing4387 4 роки тому +3

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

  • @GurtMan100
    @GurtMan100 2 роки тому +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  2 роки тому

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

  • @cwergsen5640
    @cwergsen5640 2 роки тому +2

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

  • @mikinpatel2349
    @mikinpatel2349 2 роки тому +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 2 роки тому +1

      agree !!

    • @CODELLIGENT
      @CODELLIGENT  2 роки тому +1

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

  • @Rahulsingh-rm4iz
    @Rahulsingh-rm4iz Рік тому

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

  • @LuigiZambetti
    @LuigiZambetti 3 роки тому

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

  • @gio_hdz
    @gio_hdz 2 роки тому

    Link to project?

  • @OnoderaMyGirl
    @OnoderaMyGirl 3 місяці тому

    t.y

    • @CODELLIGENT
      @CODELLIGENT  3 місяці тому

      Glad you found them useful! 😊

  • @ashu3769
    @ashu3769 Рік тому

    Bhai video quality badhao

  • @linguafranca7834
    @linguafranca7834 2 роки тому

    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 Рік тому

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

    • @antinomy5dsbruno
      @antinomy5dsbruno 2 місяці тому

      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();