Hello, How do I sort on two properties, for example I wish to sort on both id and name. If the Id is equal, then I want to check the name. So, I should get the following -
ID = 0, Name = "Barry"
ID = 1, Name = "Ian"
ID = 1, Name = "Jane"
ID = 2, Name = "Clare"
At the moment I'm doing it just for id, as follows -