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

Поделиться
HTML-код
  • Опубликовано: 5 янв 2025

Комментарии • 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 : ruclips.net/video/Ftn9zYygBDw/видео.html
      Don't forget to subscribe the channel for future videos.. :)

  • @GurtMan100
    @GurtMan100 2 года назад +2

    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. 😊

  • @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!

  • @cwergsen5640
    @cwergsen5640 2 года назад +2

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

  • @mikinpatel2349
    @mikinpatel2349 3 года назад +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 3 года назад +1

      agree !!

    • @CODELLIGENT
      @CODELLIGENT  3 года назад +1

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

  • @Rahulsingh-rm4iz
    @Rahulsingh-rm4iz 2 года назад

    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?

  • @ashu3769
    @ashu3769 2 года назад

    Bhai video quality badhao

  • @OnoderaMyGirl
    @OnoderaMyGirl 9 месяцев назад

    t.y

    • @CODELLIGENT
      @CODELLIGENT  9 месяцев назад

      Glad you found them useful! 😊

  • @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 2 года назад

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

    • @antinomy5dsbruno
      @antinomy5dsbruno 8 месяцев назад

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