ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().Sort();
Give an error
"can not implicitly convert type void to dynamic".
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().Sort();
Give an error
"can not implicitly convert type void to dynamic".
You can use the OrderBy (x => xDaddyName) or OrderByDescending (x => xDaddyName).
Example:
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().OrderBy(x => x.NomeDoCampo);
I believe this will solve:
Especialidade.ListarEspecialidades().Sort();
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades();
Sort()
is a method void
has no return, so erro
has the functionality to sort the current list.