I want to order by descending in List Using Linq.
Here I want to order by isApproved.
List<DoctorViewModel> doctors = new List<DoctorViewModel>();
public class DoctorViewModel
{
public string Email { get; set; }
public string Name { get; set; }
public int isApproved { get; set; }
}