Search results for query: *

  1. Celso Miranda

    Question Order By List Duplicates Keys

    ok, i'll do as you said, thank you for your attention. Have a great day!
  2. Celso Miranda

    Question Order By List Duplicates Keys

    Hi, sorry for the simple explanation, I'll try to be more explanatory: I have a list that has the StudentId that can repeat N times, what I need to do first is identify which are the distinct StudentIds in the list, so far so good. Now I need to sort this list in such a way that the StudentsIds...
  3. Celso Miranda

    Question Order By List Duplicates Keys

    I have the following list IList studentTeste = new List() { new Student() { Id = 1, StudentId = 1, StudentName = "John"} , new Student() { Id = 2, StudentId = 1, StudentName = "John"} , new Student() { Id = 3, StudentId = 2, StudentName = "Ram"} , new Student() { Id = 4...
Back
Top Bottom