Part 19 Group by multiple keys in linq

Поділитися
Вставка
  • Опубліковано 29 лис 2024

КОМЕНТАРІ • 20

  • @kamdemkakengne
    @kamdemkakengne 7 років тому +1

    Hi Venkat! You make me better programmer with your tutorials

  • @dgloria
    @dgloria 6 років тому +1

    Hi Venkat, the last three minutes with the select new was a bit confusing, but hey, that's something I need to work on. Apart from that I understood the logic and was able to replicate this code (except the last bit). Wonder when we get to joined tables!! Can't wait!! Love to learn from you, greetings from Hungary.

  • @Vagelis_Prokopiou
    @Vagelis_Prokopiou 5 років тому

    Thank you Mr Venkat 👍

  • @ronchennai
    @ronchennai 10 років тому +1

    Thanks Venkat !!

  • @irapps
    @irapps 7 років тому +3

    Hey man, thanks! This helped me a lot! Keep up the good work!

    • @Csharp-video-tutorialsBlogspot
      @Csharp-video-tutorialsBlogspot  7 років тому +2

      Thank you very much for taking time to give feedback. This means a lot. I am very glad you found the videos useful.
      I have organised all the Dot Net & SQL Server videos in to playlists, which could be useful to you
      ua-cam.com/users/kudvenkatplaylists?view=1&sort=dd
      If you need DVDs or to download all the videos for offline viewing please visit
      www.pragimtech.com/kudvenkat_dvd.aspx
      Slides and Text Version of the videos can be found on my blog
      csharp-video-tutorials.blogspot.com
      Tips to effectively use my youtube channel.
      ua-cam.com/video/y780MwhY70s/v-deo.html
      If you want to receive email alerts, when new videos are uploaded, please subscribe to my youtube channel.
      ua-cam.com/users/kudvenkat
      If you like these videos, please click on the THUMBS UP button below the video.
      May I ask you for a favor. I want these tutorials to be helpful for as many people as possible. Please share the link with your friends and family who you think would also benefit from them.
      Good Luck
      Venkat

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

    Didn't understand the projection part. why to use eGroup for sorting name in ascending order, we can also take employee directly and sort by name. Correct me if I am wrong?

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

    best teacher

  • @MZ-uv3sr
    @MZ-uv3sr Рік тому

    Love this, but wonder if you have another version with method/fluent syntax? I need to do something with a nested group by and came here.

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

    Hi Venkat, I have requirement I want to group the 2 column based on condition
    Syntax: foreach( var item in data.groupby(x=> x.code =="002" ? Then group based on two columns exp (x.code,x.stdcode) : x.code))

  • @RachitJain4U
    @RachitJain4U 5 років тому

    Thank You Sir :)

  • @georgesfidelia
    @georgesfidelia 7 років тому

    Another way to do it:
    var groups = from e in db.Employees
    orderby e.FirstName
    group e by e.DepartmentId +" | "+ e.Gender
    ;
    Thanks Kud.

  • @rahulsrivastava4228
    @rahulsrivastava4228 10 років тому

    thank you so much sir, please upload videos of Design pattern

    • @Csharp-video-tutorialsBlogspot
      @Csharp-video-tutorialsBlogspot  10 років тому +5

      Hi Rahul, sure, will upload design pattern videos as soon as I can.

    • @rahulsrivastava4228
      @rahulsrivastava4228 10 років тому

      kudvenkat sir , thank u so much in advance for uploading videos on design pattern for we students ..you are awesome ....I know you put your entire effort in making such videos, there is nothing to resit your material to let it ingrain into our brain.
      Thank you

  • @Dhruvinbhatt
    @Dhruvinbhatt 8 років тому

    hello nice video how to bind this nested list into modal?

  • @saagarsoni3
    @saagarsoni3 10 років тому

    thnx a lot sir

  • @jiturcm1
    @jiturcm1 10 років тому

    nice