Error sorting list?

Asked

Viewed 62 times

5

ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().Sort();

Of a mistake

"cannot implicitly Convert type void to Dynamic".

  • gave the right answer?

2 answers

7

I believe that solves:

Especialidade.ListarEspecialidades().Sort();
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades();

The Sort() is a method void there is no return, so erro, has the functionality to sort the current list.

4


You can use Orderby(x => x.Fieldname) or Orderbydescending(x => x.Fieldname).

Example:

ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().OrderBy(x => x.NomeDoCampo);

Browser other questions tagged

You are not signed in. Login or sign up in order to post.